/* BRUH Token Website Styles */
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700&display=swap');

:root {
    --primary-color: #7CFC00;
    --secondary-color: #32CD32;
    --dark-color: #006400;
    --light-color: #ADFF2F;
    --background-color: #000000;
    --text-color: #ffffff;
    --accent-color: #FF9900;
}

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

body {
    font-family: 'Rubik', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    background-image: url('images/background.jpg');
    background-size: cover;
    background-attachment: fixed;
    line-height: 1.6;
}

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

/* Header Styles */
header {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

header video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.header-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    max-width: 80%;
}

h1 {
    font-size: 6rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--secondary-color),
                 0 0 20px var(--secondary-color),
                 0 0 30px var(--secondary-color);
    animation: pulse 2s infinite;
}

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

.tagline {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--light-color);
}

.header-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid var(--dark-color);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background-color: var(--light-color);
}

/* Fixed Social Buttons */
.social-fixed {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 0;
    overflow: hidden;
    border: 2px solid var(--dark-color);
}

.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--primary-color);
}

.social-icon.twitter::before {
    content: "X";
    font-size: 18px;
}

.social-icon.telegram::before {
    content: "T";
    font-size: 18px;
}

.music-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--dark-color);
    border: 2px solid var(--dark-color);
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-top: 10px;
    position: relative;
    z-index: 1001;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(124, 252, 0, 0.7);
    }
    
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(124, 252, 0, 0);
    }
    
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(124, 252, 0, 0);
    }
}

.music-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--primary-color);
}

.music-button.muted {
    background-color: #ff4444;
}

/* About Section */
.about-section {
    padding: 100px 0;
    position: relative;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-container.wide {
    max-width: 1500px;
}

.about-content {
    flex: 1;
    max-width: 1000px;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 40px 60px;
    border-radius: 20px;
    border: 2px solid var(--primary-color);
}

.bruh-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.bruh-left, .bruh-right {
    position: absolute;
    width: 200px;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

.bruh-left {
    left: -100px;
    top: -50px;
    transform: rotate(-15deg);
    animation-delay: 0.5s;
}

.bruh-right {
    right: -100px;
    bottom: -50px;
    transform: rotate(15deg);
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(-15deg);
    }
    50% {
        transform: translateY(-20px) rotate(-5deg);
    }
    100% {
        transform: translateY(0) rotate(-15deg);
    }
}

h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

/* Contract Section */
.contract-section {
    padding: 100px 0;
    text-align: center;
}

.contract-box {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 20px;
    margin: 30px auto;
    max-width: 700px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

#contract-address {
    font-family: monospace;
    font-size: 1.2rem;
    color: var(--light-color);
    flex-grow: 1;
    text-align: left;
    padding: 0 10px;
}

#copy-button {
    background-color: var(--primary-color);
    color: var(--dark-color);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

#copy-button:hover {
    background-color: var(--light-color);
}

#copy-message {
    position: absolute;
    top: -40px;
    right: 20px;
    background: var(--dark-color);
    color: var(--light-color);
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contract-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Memes Section */
.memes-section {
    padding: 100px 0;
    text-align: center;
}

.meme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

@media (min-width: 768px) {
    .meme-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.meme-item {
    border: 3px solid var(--primary-color);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.meme-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--primary-color);
}

.meme-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 50px 0;
    text-align: center;
    border-top: 3px solid var(--primary-color);
}

.disclaimer {
    max-width: 700px;
    margin: 20px auto;
    font-size: 0.8rem;
    opacity: 0.7;
}

.social-links {
    margin-top: 30px;
}

.social-links a {
    color: var(--primary-color);
    margin: 0 15px;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--light-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .header-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .about-container {
        flex-direction: column;
    }
    
    .bruh-left, .bruh-right {
        position: static;
        width: 150px;
        margin: 20px;
    }
    
    .contract-box {
        flex-direction: column;
        gap: 15px;
    }
    
    #contract-address {
        font-size: 0.9rem;
        word-break: break-all;
    }
} 