/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: url('images/favicon.png'), auto;
}

/* IMPORT CHEWY FONT */
@import url('https://fonts.googleapis.com/css2?family=Chewy&display=swap');

body {
    font-family: 'Chewy', system-ui;
    font-weight: 400;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    background-color: #000;
    letter-spacing: 1px;
}

/* Video background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Floating images container */
#floating-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: auto;
}

.floating-image {
    position: absolute;
    user-select: none;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.5));
}

.floating-image:hover {
    transform: scale(1.15);
}

/* Content layer */
.content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content > * {
    pointer-events: auto;
}

/* Header styles */
header {
    text-align: center;
    padding: 40px 20px 30px;
    flex-shrink: 0;
}

.title {
    font-size: 5.5rem;
    font-weight: 400;
    color: #ff5d7f;
    text-shadow: 5px 5px 0 #000000,
                 10px 10px 0 rgba(0, 0, 0, 0.3);
    letter-spacing: 4px;
    margin-bottom: 60px;
    line-height: 0.9;
    text-transform: uppercase;
    transition: transform 0.2s ease, text-shadow 0.2s ease;
    display: inline-block;
}

.title:hover {
    transform: scale(1.05);
    text-shadow: 8px 8px 0 #000000,
                 15px 15px 0 rgba(0, 0, 0, 0.3),
                 0 0 20px rgba(255, 93, 127, 0.5);
}

.subtitle {
    font-size: 3rem;
    color: #FFCC00;
    font-weight: 400;
    text-shadow: 3px 3px 0 #000000,
                 6px 6px 0 rgba(0, 0, 0, 0.3);
    margin-top: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Info card styles */
.info-card {
    background-color: rgba(255, 174, 191, 0.2);
    padding: 15px;
    margin-top: 50px;
    margin-bottom: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3),
                0 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    backdrop-filter: blur(5px);

}

.address-section {
    margin-top: 15px;
    margin-bottom: 20px;
}

.address-section h3 {
    font-size: 2rem;
    color: #000000;
    font-family: 'Chewy', system-ui;
    font-weight: 200;
    text-align: center;
    text-shadow: 2px 2px 0 #000000,
                 4px 4px 0 rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

/* Address container */
.address-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.address-display {
    flex-grow: 1;
    min-width: 80px;
    max-width: 550px;
    background: rgba(255, 174, 191, 0.5);
    border-radius: 15px;
    padding: 20px;
    font-family: 'Chewy', system-ui;
    font-size: 1.2rem;
    font-weight: 200;
    color: #ff5d7f;
    overflow-x: auto;
    white-space: nowrap;
    text-align: center;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 1);
    letter-spacing: 1px;
}

.copy-btn {
    background: rgba(255, 174, 191, 0.2);
    color: #ffffff;
    border: none !important;
    outline: none !important;
    border-radius: 15px;
    padding: 18px 35px;
    font-size: 1.5rem;
    font-family: 'Chewy', system-ui;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-width: 180px;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.copy-btn:hover {
    background: rgba(255, 174, 191, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.copy-btn:active {
    transform: translateY(0);
}

.copy-btn i {
    margin-right: 12px;
    font-size: 1.5rem;
}

/* Action buttons */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px;
    font-size: 1.5rem;
    font-family: 'Chewy', system-ui;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 220px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.twitter-btn {
    background: rgba(255, 174, 191, 0.2);
    color: #ffffff;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 1);
}

.twitter-btn:hover {
    background: rgba(255, 174, 191, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.chart-btn {
    background: rgba(255, 174, 191, 0.2);
    color: #ffffff;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 1);
}

.chart-btn:hover {
    background: rgba(255, 174, 191, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.action-btn i {
    margin-right: 12px;
    font-size: 1.7rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 20px;
    margin-top: auto;
    flex-shrink: 0;
}

.copyright {
    color: #ff5d7f;
    font-size: 1.5rem;
    font-family: 'Chewy', system-ui;
    font-weight: 400;
    text-shadow: 2px 2px 0px #000000;
    letter-spacing: 2px;
}

/* Notification */
.notification {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: rgba(255, 174, 191, 0.2);
    color: #FFFFFF;
    padding: 22px 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    font-family: 'Chewy', system-ui;
    font-weight: 400;
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s ease;
    border: 3px solid rgba(255, 174, 191, 0.5);
    border-radius: 15px;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

/* Responsive design */
@media (max-width: 768px) {
    .title {
        font-size: 5rem;
        text-shadow: 4px 4px 0 #000000,
                     8px 8px 0 rgba(0, 0, 0, 0.3);
        letter-spacing: 3px;
    }
    
    .subtitle {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .address-section h3 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .address-display {
        font-size: 1.3rem;
        min-width: 250px;
        padding: 15px;
        border-radius: 12px;
    }
    
    .copy-btn {
        min-width: 160px;
        padding: 16px 25px;
        font-size: 1.5rem;
        border-radius: 12px;
    }
    
    .action-btn {
        min-width: 200px;
        padding: 18px 30px;
        font-size: 1.5rem;
        border-radius: 12px;
    }
    
    .copyright {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
    
    .info-card {
        padding: 30px 20px;
        border-radius: 18px;
    }
    
    .notification {
        font-size: 1.2rem;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 4rem;
        letter-spacing: 2px;
    }
    
    .subtitle {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .address-section h3 {
        font-size: 1.8rem;
    }
    
    .address-container {
        flex-direction: column;
    }
    
    .address-display {
        width: 100%;
        min-width: unset;
    }
    
    .copy-btn {
        width: 100%;
        min-width: unset;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-btn {
        width: 100%;
        min-width: unset;
    }
    
    .notification {
        bottom: 20px;
        right: 20px;
        left: 20px;
        text-align: center;
    }
}
