body {    margin: 0;    padding: 0;    overflow: hidden;    background: #000;    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;}canvas {    display: block;    position: fixed;    top: 0;    left: 0;    width: 100%;    height: 100%;}#help-overlay {    position: fixed;    top: 0;    left: 0;    width: 100%;    height: 100%;    background: rgba(0, 0, 0, 0.85);    display: flex;    justify-content: center;    align-items: center;    z-index: 1000;}.help-content {    background: rgba(255, 255, 255, 0.95);    padding: 2rem;    border-radius: 15px;    max-width: 80%;    max-height: 80vh;    overflow-y: auto;}.help-content h1 {    margin: 0 0 1rem 0;    text-align: center;    color: #000;}.help-content pre {    background: #f5f5f5;    padding: 1rem;    border-radius: 5px;    overflow-x: auto;    margin: 1rem 0;}.help-content button {    position: absolute;    top: 1rem;    right: 1rem;    background: none;    border: none;    font-size: 1.5rem;    cursor: pointer;    color: #000;}@media (max-width: 768px) {    .help-content {        padding: 1rem;        margin: 1rem;    }}
.overlay {position:fixed;top:20px;left:0;width:100%;text-align:center;z-index:10;padding:20px;pointer-events:none}
.gradient-title {
    font-size: 2.5em;
    font-weight: 700;
    margin: 0;
    padding: 0;
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(200,200,200,1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255,255,255,0.1);
    letter-spacing: 0.05em;
}
.gradient-title .subtitle {
    display: block;
    font-size: 0.4em;
    font-weight: 400;
    margin-top: 10px;
    opacity: 0.9;
    letter-spacing: 0.1em;
}
#collect-now {
    padding: 15px 30px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: white;
    font-size: 1.1em;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

#collect-now:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

a {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-decoration: none;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .gradient-title {
        font-size: 1.8em;
        padding-top: 40px;
    }
    .gradient-title .subtitle {
        font-size: 0.5em;
    }
    #collect-now {
        padding: 15px 30px;
        font-size: 1em;
        min-width: 160px;
        min-height: 44px;
    }
    a {
        bottom: 40px;
        z-index: 100;
    }
    
    .about-toggle {
        top: 20px;
        right: 20px;
        padding: 12px 24px;
        font-size: 1em;
        min-height: 44px;
        min-width: 80px;
        z-index: 101;
    }
    
    .social-link {
        top: 20px;
        left: 20px;
        padding: 12px;
        min-height: 44px;
        min-width: 44px;
        z-index: 101;
    }
    
    .x-icon {
        width: 24px;
        height: 24px;
    }
    
    .about-toggle,
    .social-link,
    #collect-now {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .about-toggle:active,
    .social-link:active,
    #collect-now:active {
        transform: scale(0.95);
        transition: transform 0.1s;
    }
}

@media (max-width: 480px) {
    .gradient-title {
        font-size: 1.5em;
        padding-top: 80px;
    }
    
    #collect-now {
        padding: 15px 30px;
        font-size: 1em;
    }
    
    .about-toggle {
        top: 15px;
        right: 15px;
    }
    
    .social-link {
        top: 15px;
        left: 15px;
    }
}

/* Add styles for the anchor tag */
#collect-now + a, a:visited {
    text-decoration: none;
    color: inherit;
}

a #collect-now {
    position: relative;
    transform: none;
    left: auto;
    bottom: auto;
}

/* About Button Styles */
.about-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    color: white;
    font-size: 0.9em;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.about-toggle:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-1px);
}

/* About Overlay Styles */
#about-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#about-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.about-content {
    max-width: 800px;
    margin: 20px;
    padding: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.about-title {
    font-size: 1.8em;
    margin: 0 0 10px 0;
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(200,200,200,1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}

.about-subtitle {
    font-size: 1.2em;
    margin: 0 0 30px 0;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
}

.about-text {
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

.about-text p {
    margin-bottom: 20px;
}

.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

.close-button:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .about-content {
        padding: 20px;
        margin: 10px;
    }
    
    .about-title {
        font-size: 1.4em;
    }
    
    .about-subtitle {
        font-size: 1em;
    }
    
    .about-text {
        font-size: 0.9em;
    }
    
    .about-toggle {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 0.8em;
    }
}

/* Remove old social link styles */
.social-link {
    display: none;
}

/* Add new social container styles */
.social-container {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.social-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.9em;
    margin-bottom: 15px;
}

.social-link-about {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link-about:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.social-link-about .x-icon {
    width: 24px;
    height: 24px;
    color: white;
}

@media (max-width: 768px) {
    .social-container {
        margin-top: 20px;
        padding-top: 15px;
    }
    
    .social-text {
        font-size: 0.8em;
    }
    
    .social-link-about {
        padding: 8px;
    }
    
    .social-link-about .x-icon {
        width: 20px;
        height: 20px;
    }
}

#controls-button {
    right: 100px;
}

#controls-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#controls-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

#controls-overlay .about-text ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}

#controls-overlay .about-text li {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.9);
}

#controls-overlay .about-text strong {
    color: rgba(255,255,255,1);
    display: block;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    #controls-button {
        right: 140px;
    }
    
    /* Existing mobile styles... */
} 