/* Base Styles */
:root {
    --gold-light: #f6e27a;
    --gold-base: #d4af37;
    --gold-dark: #996515;
    --gold-shadow: rgba(153, 101, 21, 0.5);
    --gold-highlight: #fff6c8;
    --gold-gradient: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-base) 40%, var(--gold-light) 60%, var(--gold-base) 80%, var(--gold-dark) 100%);
    --gold-gradient-hover: linear-gradient(135deg, var(--gold-dark) 10%, var(--gold-light) 40%, var(--gold-highlight) 50%, var(--gold-light) 60%, var(--gold-dark) 90%);
    --secondary-color: #fff;
    --background-color: #000;
    --accent-color: #373737;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background-color);
    color: var(--secondary-color);
    font-family: var(--font-secondary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Gold Particles Background */
.gold-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold-base);
    border-radius: 50%;
    opacity: 0.6;
    animation: float-particles 8s infinite linear;
}

.particle:nth-child(odd) {
    background: var(--gold-light);
    animation-duration: 10s;
}

.particle:nth-child(3n) {
    background: var(--gold-dark);
    animation-duration: 12s;
    width: 2px;
    height: 2px;
}

@keyframes float-particles {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 800;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--gold-base);
    transition: all var(--transition-speed) ease;
}

a:hover {
    color: var(--secondary-color);
}

.guinness-link {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--gold-base);
    transition: all var(--transition-speed) ease;
}

.guinness-link:hover {
    color: var(--gold-light);
    text-shadow: 0 0 10px var(--gold-shadow);
    text-decoration-color: var(--gold-light);
}

/* Header */
header {
    background: none;
    padding: 2rem 0;
    border-bottom: 5px solid var(--gold-base);
    position: relative;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.title {
    font-size: 3.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.text-logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.text-logo {
    max-width: 900px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.logo-wrapper {
    width: 450px;
    height: 450px;
    margin: 1rem 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 4s ease-in-out infinite;
    background: none;
    border: none;
    box-shadow: none;
}

.coin-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: none;
    border: none;
    box-shadow: none;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    text-align: center;
}

.tagline {
    margin-bottom: 2rem;
}

.tagline h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.highlight {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: -5px;
    left: 0;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.highlight:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.subtitle {
    font-size: 1.5rem;
    color: #aaa;
    font-style: italic;
}

/* About Section */
.about {
    padding: 3rem 0;
    background-color: rgba(30, 30, 30, 0.5);
    margin: 2rem 0;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    opacity: 0.6;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.about-content h3 {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* CTA Section */
.cta {
    padding: 3rem 0;
    text-align: center;
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-speed) ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 200px;
}

.btn i {
    font-size: 1.2rem;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--background-color);
    border: 2px solid var(--gold-base);
    box-shadow: 0 4px 15px var(--gold-shadow);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold-base);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--gold-shadow);
    border: 2px solid var(--gold-light);
}

.btn-secondary {
    background-color: transparent;
    color: var(--gold-base);
    border: 2px solid var(--gold-base);
}

.btn-secondary:hover {
    background: var(--gold-gradient-hover);
    color: var(--background-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--gold-shadow);
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 0;
}

.feature {
    background-color: rgba(30, 30, 30, 0.5);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform var(--transition-speed) ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px var(--gold-shadow);
    border: 1px solid var(--gold-base);
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(30,30,30,0.7) 100%);
}

.feature-icon {
    font-size: 2.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.feature h3 {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid var(--gold-dark);
    margin-top: 2rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold-gradient);
    opacity: 0.5;
}

.disclaimer {
    margin-bottom: 1rem;
    font-style: italic;
    color: #777;
}

.copyright {
    color: #555;
    font-size: 0.9rem;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

/* Netflix Section */
.netflix-section {
    padding: 4rem 0;
    text-align: center;
    background-color: rgba(30, 30, 30, 0.5);
    margin: 2rem 0;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.netflix-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    opacity: 0.6;
}

.netflix-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.netflix-section h3 {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.netflix-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 3rem;
}

.netflix-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-item {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform var(--transition-speed) ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.highlight-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px var(--gold-shadow);
    border: 1px solid var(--gold-base);
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(30,30,30,0.7) 100%);
}

.highlight-item i {
    font-size: 2.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.highlight-item h4 {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.highlight-item p {
    color: #ddd;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Contract Address Section */
.contract-section {
    padding: 3rem 0;
    text-align: center;
    margin: 2rem 0;
}

.contract-container {
    max-width: 800px;
    margin: 0 auto;
}

.contract-section h3 {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contract-address-box {
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(30,30,30,0.8) 100%);
    border: 2px solid var(--gold-base);
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    max-width: 600px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--gold-shadow);
}

.contract-address-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    opacity: 0.8;
}

#contract-address {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--gold-light);
    word-break: break-all;
    font-weight: 700;
    letter-spacing: 1px;
}

.coming-soon {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.copy-btn {
    background: var(--gold-gradient);
    color: var(--background-color);
    border: none;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
    white-space: nowrap;
}

.copy-btn:hover {
    background: var(--gold-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px var(--gold-shadow);
}

.copy-btn.copied {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
}

/* Tokenomics Section */
.tokenomics-section {
    padding: 4rem 0;
    text-align: center;
    background-color: rgba(30, 30, 30, 0.5);
    margin: 2rem 0;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tokenomics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    opacity: 0.6;
}

.tokenomics-section h3 {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

.tokenomics-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tokenomics-item {
    background: rgba(20, 20, 20, 0.6);
    border: 2px solid var(--gold-base);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

.tokenomics-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    opacity: 0.8;
}

.tokenomics-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--gold-shadow);
    border-color: var(--gold-light);
}

.tokenomics-icon {
    background: var(--gold-gradient);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px var(--gold-shadow);
}

.tokenomics-icon i {
    font-size: 1.5rem;
    color: var(--background-color);
}

.tokenomics-content h4 {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.tokenomics-content p {
    color: #ddd;
    line-height: 1.5;
    font-size: 1rem;
}

/* Paparazzi Spotlight Section */
.paparazzi-section {
    padding: 4rem 0;
    text-align: center;
    background-color: rgba(30, 30, 30, 0.5);
    margin: 2rem 0;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.paparazzi-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    opacity: 0.6;
}

.paparazzi-section h3 {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
}

.paparazzi-section h3::after {
    content: '📸';
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    animation: flash 2s infinite;
}

.paparazzi-subtitle {
    color: #ddd;
    font-style: italic;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.paparazzi-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.paparazzi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.paparazzi-photo {
    position: relative;
    transform: rotate(0deg);
    transition: all 0.3s ease;
    cursor: pointer;
}

.paparazzi-photo:nth-child(odd) {
    transform: rotate(-2deg);
}

.paparazzi-photo:nth-child(even) {
    transform: rotate(2deg);
}

.paparazzi-photo:hover {
    transform: rotate(0deg) scale(1.05);
    z-index: 10;
}

.photo-frame {
    background: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.photo-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%);
    pointer-events: none;
}

.meme-image {
    width: 100%;
    height: auto;
    border-radius: 3px;
    display: block;
    position: relative;
}

.photo-caption {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-style: italic;
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
    z-index: 2;
}

.flash-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    opacity: 0;
    pointer-events: none;
    border-radius: 5px;
}

.paparazzi-photo:hover .flash-effect {
    animation: cameraFlash 0.3s ease-out;
}

@keyframes flash {
    0%, 50% { opacity: 1; }
    25%, 75% { opacity: 0.5; }
}

@keyframes cameraFlash {
    0% { opacity: 0; }
    50% { opacity: 0.8; }
    100% { opacity: 0; }
}

/* Responsive adjustments for paparazzi section */
@media (max-width: 768px) {
    .paparazzi-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .paparazzi-section h3::after {
        right: -30px;
        font-size: 1.2rem;
    }
    
    .meme-image {
        max-width: 100%;
    }
}

/* How to Buy Section */
.how-to-buy-section {
    padding: 4rem 0;
    text-align: center;
    background-color: rgba(30, 30, 30, 0.5);
    margin: 2rem 0;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.how-to-buy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    opacity: 0.6;
}

.how-to-buy-section h3 {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 1.5rem;
    transition: transform var(--transition-speed) ease;
}

.step:hover {
    transform: translateX(5px);
}

.step-number {
    background: var(--gold-gradient);
    color: var(--background-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px var(--gold-shadow);
}

.step-content {
    flex-grow: 1;
}

.step-content h4 {
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #ddd;
    line-height: 1.5;
}

.step-content .highlight {
    font-weight: 700;
    padding: 0 5px;
}

/* CTA Section */
.cta {
    padding: 3rem 0;
    text-align: center;
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-speed) ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 200px;
}

.btn i {
    font-size: 1.2rem;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--background-color);
    border: 2px solid var(--gold-base);
    box-shadow: 0 4px 15px var(--gold-shadow);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold-base);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--gold-shadow);
    border: 2px solid var(--gold-light);
}

.btn-secondary {
    background-color: transparent;
    color: var(--gold-base);
    border: 2px solid var(--gold-base);
}

.btn-secondary:hover {
    background: var(--gold-gradient-hover);
    color: var(--background-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--gold-shadow);
}

/* Social Links */
.social-links {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gold-base);
}

.social-links h3 {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-speed) ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 150px;
    justify-content: center;
    text-decoration: none;
}

.social-btn i {
    font-size: 1.2rem;
}

.social-btn.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #229ED9 100%);
    color: white;
    border: 2px solid #0088cc;
}

.social-btn.telegram:hover {
    background: transparent;
    color: #0088cc;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 136, 204, 0.3);
}

.social-btn.twitter {
    background: linear-gradient(135deg, #1DA1F2 0%, #0d95e8 100%);
    color: white;
    border: 2px solid #1DA1F2;
}

.social-btn.twitter:hover {
    background: transparent;
    color: #1DA1F2;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(29, 161, 242, 0.3);
}

/* Why GUNTHER Section */
.why-gunther-section {
    padding: 4rem 0;
    text-align: center;
    background-color: rgba(30, 30, 30, 0.5);
    margin: 2rem 0;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.why-gunther-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    opacity: 0.6;
}

.why-gunther-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.why-gunther-section h3 {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.why-gunther-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 3rem;
}

.why-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.why-item {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: transform var(--transition-speed) ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.why-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px var(--gold-shadow);
    border: 1px solid var(--gold-base);
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(30,30,30,0.7) 100%);
}

.why-item i {
    font-size: 2rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.why-item h4 {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.why-item p {
    color: #ddd;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0;
}

/* Final Woof Section */
.final-woof {
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: rgba(30, 30, 30, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.final-woof h3 {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.final-woof p {
    color: #ddd;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .text-logo {
        max-width: 600px;
    }
    
    .logo-wrapper {
        width: 350px;
        height: 350px;
    }
    
    .tagline h2 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .btn {
        min-width: auto;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .netflix-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .highlight-item {
        padding: 1.5rem;
    }
    
    .contract-address-box {
        flex-direction: column;
        gap: 1rem;
    }
    
    .copy-btn {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }
    
    #contract-address {
        font-size: 0.9rem;
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .why-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .why-item {
        padding: 1.5rem;
    }
    
    .final-woof {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }
    
    .text-logo {
        max-width: 450px;
    }
    
    .logo-wrapper {
        width: 280px;
        height: 280px;
    }
    
    .about-content h3 {
        font-size: 1.5rem;
    }
    
    .about-content p {
        font-size: 1rem;
    }
}
