body {
    margin: 0;
    font-family: 'Arial Black', Arial, sans-serif;
    background: linear-gradient(180deg, #FFD95C, #FFD95C);
    color: #000;
}

/* Header and Navigation */
header {
    background: #fff;
    padding: 10px 0;
    border-bottom: 3px solid #000;
}

nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.logo-circle {
    background: url('images/gavcoinnn.png') no-repeat center center/cover;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #000;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    font-weight: bold;
    color: #000;
    font-size: 16px;
}

/* Main Content */
main {
    text-align: center;
    padding: 20px;
}

.hero h1, .shiny-title {
    font-size: 72px;
    font-weight: bold;
    color: #fff !important; /* Force white text on all devices */
    text-shadow:
        0 0 5px #FFD700,
        0 0 10px #FFD700,
        0 0 20px #FFD700,
        0 0 30px #FFD700;
    animation: shineWhite 4s linear infinite;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .hero h1, .shiny-title {
        font-size: 40px;
        color: #fff !important; /* Maintain white text on mobile */
    }
}
@keyframes shineWhite {
    0% {
        text-shadow:
            0 0 5px #FFD700,
            0 0 10px #FFD700,
            0 0 20px #FFD700,
            0 0 30px #FFD700;
    }
    50% {
        text-shadow:
            0 0 10px #FFD700,
            0 0 20px #FFD700,
            0 0 40px #FFD700,
            0 0 60px #FFD700;
    }
    100% {
        text-shadow:
            0 0 5px #FFD700,
            0 0 10px #FFD700,
            0 0 20px #FFD700,
            0 0 30px #FFD700;
    }
}

.subtitle {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    text-shadow: 2px 2px 0px #FFD700;
    margin-bottom: 20px;
    background: #fff3b0;
    border: 2px solid #000;
    border-radius: 10px;
    padding: 10px 20px;
    display: inline-block;
    box-shadow: 4px 4px 0px #000;
    transition: background 0.3s, transform 0.2s;
}

.subtitle:hover,
.subtitle:active {
    background: #FFD700;
    transform: translateY(-2px);
}

@keyframes shineText {
    0% { text-shadow: 0 0 5px #000, 0 0 10px #000, 0 0 20px #FFD700, 0 0 30px #FFD700; }
    50% { text-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700, 0 0 40px #FFD700, 0 0 60px #FFD700; }
    100% { text-shadow: 0 0 5px #000, 0 0 10px #000, 0 0 20px #FFD700, 0 0 30px #FFD700; }
}

/* Coin Image */
.coin-image {
    background: url('images/gavcoinnn.png') no-repeat center center/cover;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 5px solid #000;
    margin: 0 auto 20px;
}

/* Quick Links */
.quick-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.quick-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 2px solid #000;
    border-radius: 10px;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    color: #000;
    box-shadow: 4px 4px 0px #000;
    transition: background 0.3s, transform 0.2s;
}

.quick-links a:hover {
    background: #FFD700;
    transform: translateY(-2px);
}

.quick-links .quick-link-logo {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #000;
    object-fit: cover;
}

/* Info Boxes */
.info-boxes {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.info-box {
    background: #fff;
    border: 2px solid #000;
    border-radius: 10px;
    padding: 20px;
    font-size: 20px;
    width: 200px;
    box-shadow: 4px 4px 0px #000;
}

.info-box span {
    font-weight: bold;
    font-size: 24px;
}

/* Quick Steps */
.quick-steps {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.quick-steps .step {
    background: #fff;
    border: 2px solid #000;
    border-radius: 10px;
    padding: 15px 25px;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 4px 4px 0px #000;
}

/* Contract Address Bubble */
.ca-bubble {
    background: #fff3b0;
    border: 3px solid #000;
    border-radius: 15px;
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 20px;
    box-shadow: 6px 6px 0px #000;
    text-align: center;
}

.ca-bubble h2 {
    font-size: 48px;
    color: #FFD700;
    text-shadow: 2px 2px 4px #000;
    margin-bottom: 20px;
    font-weight: bold;
}

.ca-copy {
    background: #fff;
    border: 2px solid #000;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
    cursor: pointer;
    box-shadow: 4px 4px 0px #000;
    user-select: all;
    transition: background 0.3s, transform 0.2s;
}

.ca-copy:hover {
    background: #FFD700;
    transform: translateY(-2px);
}

.copy-message {
    font-size: 16px;
    color: green;
    margin-top: 10px;
    font-weight: bold;
}

/* Bubbled Sections */
.proof-section,
.proof-screenshots,
.github-section,
.tweets-section,
.blog-section,
.how-to-buy {
    background: #fff;
    border: 3px solid #000;
    border-radius: 15px;
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 20px;
    box-shadow: 6px 6px 0px #000;
    text-align: center;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.proof-section:hover,
.proof-screenshots:hover,
.github-section:hover,
.tweets-section:hover,
.blog-section:hover,
.how-to-buy:hover {
    background: #FFD700;
    transform: scale(1.02);
    box-shadow: 8px 8px 0px #000;
}

.proof-section h2,
.proof-screenshots h2,
.github-section h2,
.tweets-section h2,
.blog-section h2,
.how-to-buy h2 {
    font-size: 48px;
    color: #FFD700;
    text-shadow: 2px 2px 4px #000;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Video Wrapper */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border: 2px solid #000;
    border-radius: 10px;
    box-shadow: 4px 4px 0px #000;
    background: #f9f9f9;
}
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Proof Screenshots */
.proof-screenshots img {
    max-width: 600px !important;
    height: auto !important;
    margin: 10px;
    border: 2px solid #000;
    border-radius: 10px;
    box-shadow: 4px 4px 0px #000;
}

/* GitHub Link */
.github-link a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    color: #000;
    background: #fff;
    border: 2px solid #000;
    border-radius: 10px;
    padding: 10px 20px;
    box-shadow: 4px 4px 0px #000;
    transition: background 0.3s, transform 0.2s;
}
.github-link a:hover {
    background: #FFD700;
    transform: translateY(-2px);
}

.github-icon {
    background: url('images/github-icon.png') no-repeat center center/cover;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border: 2px solid #000;
    border-radius: 50%;
}

/* Tweet Links */
.tweet-links a {
    display: block;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    color: #000;
    background: #fff3b0;
    border: 2px solid #000;
    border-radius: 10px;
    padding: 10px 20px;
    margin: 10px auto;
    box-shadow: 4px 4px 0px #000;
    max-width: 600px;
    transition: background 0.3s, transform 0.2s;
}
.tweet-links a:hover {
    background: #FFD700;
    transform: translateY(-2px);
}

/* Ethereum Blog Link */
.blog-link a {
    display: inline-block;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    color: #000;
    background: #fff;
    border: 2px solid #000;
    border-radius: 10px;
    padding: 10px 20px;
    box-shadow: 4px 4px 0px #000;
    transition: background 0.3s, transform 0.2s;
}
.blog-link a:hover {
    background: #FFD700;
    transform: translateY(-2px);
}

/* How To Buy Steps */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.step-box {
    background: #f9f9f9;
    border: 2px solid #000;
    border-radius: 10px;
    padding: 15px;
    text-align: left;
    box-shadow: 4px 4px 0px #000;
}
.step-box .number {
    background: #FFD700;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    border: 2px solid #000;
    box-shadow: 2px 2px 0px #000;
}

/* Footer */
footer {
    background: #fff;
    text-align: center;
    padding: 15px;
    font-size: 14px;
    border-top: 3px solid #000;
}

/* Video Explanation */
.video-explanation {
    background: #fff;
    border: 3px solid #000;
    border-radius: 15px;
    max-width: 700px;
    margin: 20px auto 40px;
    padding: 20px;
    box-shadow: 6px 6px 0px #000;
    text-align: left;
    font-size: 18px;
    line-height: 1.6;
    font-weight: bold;
}

.video-explanation ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.video-explanation li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.video-explanation .checkmark {
    display: inline-block;
    background: #FFD700;
    color: #000;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
    margin-right: 10px;
    box-shadow: 2px 2px 0px #000;
}

/* Screenshot Captions */
.screenshot-caption {
    font-size: 16px;
    font-weight: bold;
    background: #fff;
    border: 2px solid #000;
    border-radius: 10px;
    padding: 10px;
    margin: 10px auto;
    max-width: 700px;
    box-shadow: 4px 4px 0px #000;
    text-align: left;
}
/* [EXISTING CSS STYLES FROM EARLIER — REMAINS UNCHANGED] */

/* Responsive adjustments for mobile devices */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .hero h1, .shiny-title {
        font-size: 40px;
    }

    nav {
        flex-direction: column;
        gap: 15px;
    }

    .quick-links {
        flex-direction: column;
        gap: 15px;
    }

    .info-boxes {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .info-box {
        width: 80%;
    }

    .quick-steps {
        flex-direction: column;
        gap: 15px;
    }

    .proof-section,
    .proof-screenshots,
    .github-section,
    .tweets-section,
    .blog-section,
    .how-to-buy {
        max-width: 95%;
        padding: 15px;
    }

    .proof-screenshots img {
        max-width: 100% !important;
    }

    .video-explanation {
        max-width: 95%;
        padding: 15px;
    }

    .step-box {
        padding: 10px;
    }

    .step-box .number {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 20px;
    }

    .github-link a,
    .tweet-links a,
    .blog-link a {
        font-size: 18px;
        padding: 8px 16px;
    }

    .ca-bubble h2,
    .proof-section h2,
    .proof-screenshots h2,
    .github-section h2,
    .tweets-section h2,
    .blog-section h2,
    .how-to-buy h2 {
        font-size: 36px;
    }

    .video-explanation li .checkmark {
        width: 20px;
        height: 20px;
        line-height: 20px;
        font-size: 16px;
    }

    .screenshot-caption {
        max-width: 90%;
    }
}