/* Global Styles */
:root {
    --primary: #3FA1FF;
    --primary-dark: #2D8CFF;
    --secondary: #5865F2;
    --dark: #1A2C42;
    --light: #ECF0F1;
    --accent: #FF6B3F;
    --discord: #5865F2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #121212;
    color: var(--light);
    background-image: url('../images/background.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-blend-mode: normal; /* Changed from overlay to normal to see more background */
    background-color: rgba(0, 0, 0, 0.75); /* Reduced opacity to see more of the background */
    min-height: 100vh;
}

/* Navigation - Revised brand area */
header {
    background-color: rgba(18, 30, 45, 0.85);
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: 100%; /* Use full width */
    margin: 0;
    width: 100%;
    padding: 0 20px; /* Add some horizontal padding */
}

/* New brand container styling */
.brand-container {
    display: flex;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(63, 161, 255, 0.5);
}

.brand-icon i {
    color: white;
    font-size: 1.5rem;
    animation-duration: 4s;
}

/* Updated brand text styling to be completely blue */
.brand-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    -webkit-text-fill-color: initial; /* Remove previous transparent effect */
}

/* Remove the first-letter styling which is no longer needed */
/* ... existing code ... */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #121212;
    color: var(--light);
    background-image: url('../images/background.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-blend-mode: normal; /* Changed from overlay to normal to see more background */
    background-color: rgba(0, 0, 0, 0.75); /* Reduced opacity to see more of the background */
    min-height: 100vh;
}

/* Navigation - Adjusting logo to very left and nav to very right */
header {
    background-color: rgba(18, 30, 45, 0.85);
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: 100%; /* Use full width */
    margin: 0;
    width: 100%;
    padding: 0 20px; /* Add some horizontal padding */
}

.logo {
    display: flex;
    align-items: center;
    margin-left: 0; /* Move to very left */
    padding-left: 0; /* Remove left padding */
}

.logo img {
    height: 60px;
    width: auto;
    margin-left: 0; /* Ensure no margin */
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    margin-right: 0; /* Move to very right */
    padding-right: 0; /* Remove right padding */
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem; /* Increased font size */
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 3px; /* Thicker underline */
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary);
}

.nav-links a i {
    font-size: 1.3rem; /* Larger icons */
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.7rem; /* Larger hamburger icon */
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-color: rgba(0, 0, 0, 0.55);
    overflow: hidden;
    padding: 0 20px;
}

.hero-content {
    max-width: 1000px; /* Increased max-width */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
    padding: 0 20px;
    transform: scale(1.15); /* Scale up the entire hero content */
}

.hero-logo {
    margin-bottom: 15px;
    max-width: 600px; /* Increased from 500px to make logo bigger */
    filter: drop-shadow(0 0 30px rgba(63, 161, 255, 0.8));
}

.hero-logo img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.hero h2 {
    font-size: 3.2rem; /* Bigger heading */
    margin-bottom: 20px;
    color: #a8d8ff;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 1.4rem; /* Bigger paragraph text */
    margin-bottom: 40px;
    opacity: 0.9;
    text-align: center;
    max-width: 800px;
    line-height: 1.6;
}

/* Server IP Box */
.server-ip {
    background-color: rgba(26, 44, 66, 0.6); /* More transparent */
    padding: 15px 35px;
    border-radius: 35px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0 auto 40px;
    border: 1px solid rgba(63, 161, 255, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    max-width: fit-content;
}

.server-ip span {
    font-size: 1.6rem; /* Bigger text */
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--light);
}

.copy-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem; /* Increased font size */
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.copy-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* CTA Buttons - Restoring original styling while making them bigger */
.cta-buttons {
    display: flex;
    gap: 20px; /* Increased gap */
    justify-content: center;
    margin-top: 10px;
}

.btn {
    padding: 12px 30px; /* Larger padding */
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem; /* Increased font size */
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block; /* Changed to inline-block from flex */
    text-align: center; /* Center text */
}

.btn i {
    margin-right: 8px; /* Add space after icon */
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 5px 15px rgba(63, 161, 255, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(63, 161, 255, 0.5);
}

.btn-secondary {
    background-color: transparent;
    color: var(--light);
    border: 2px solid var(--light);
}

.btn-secondary:hover {
    background-color: var(--light);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.btn-discord {
    background-color: var(--discord);
    color: white;
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.4);
}

.btn-discord:hover {
    background-color: #4752C4;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.5);
}

/* Server Stats Section */
.server-stats {
    background-color: rgba(26, 44, 66, 0.7); /* More transparent */
    padding: 25px 0;
    border-top: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    box-shadow: 0 0 25px rgba(63, 161, 255, 0.3);
    backdrop-filter: blur(8px);
}

.stat-container {
    max-width: 1300px; /* Wider container */
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px; /* More space between stats */
    padding: 0 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    transform: scale(1.1); /* Scale up stats */
}

.stat-item i {
    font-size: 2.8rem; /* Bigger icons */
    color: var(--primary);
}

.stat-value {
    font-size: 2.1rem; /* Bigger stat values */
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 1.1rem; /* Bigger labels */
    color: #AAAAAA;
}

/* Team Section (replacing Features Section) */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1500px;
    margin: 0 auto;
}

.team-card {
    background-color: rgba(26, 44, 66, 0.6);
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    height: 100%;
    transform: scale(1.02);
    overflow: hidden;
    position: relative;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #FC0000; /* Default color */
}

.team-card.owner::before {
    background-color: #FC0000;
}

.team-card.sysadmin::before {
    background-color: #FC0000;
}

.team-card.dev::before {
    background-color: #e6ade4;
}

.team-card.admin::before {
    background-color: #FC0000;
}

.team-icon {
    width: 120px;
    height: 120px;
    border-radius: 20%;
    overflow: hidden;
    margin-bottom: 1.8rem;
    border: 3px solid #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.team-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--light);
}

.team-role {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-card.owner .team-role {
    color: #FC0000;
}

.team-card.sysadmin .team-role {
    color: #FC0000;
}

.team-card.dev .team-role {
    color: #e6ade4;
}

.team-card.admin .team-role {
    color: #FC0000;
}

.team-desc {
    color: #AAAAAA;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Team link styles - Improved clickable team cards */
.team-link {
    color: inherit;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 10;
}

.team-card {
    cursor: pointer;
    position: relative;
}

.team-card:hover::after {
    content: 'Profil besuchen';
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    text-align: center;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
}

.team-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.team-card:hover .team-icon {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(63, 161, 255, 0.4);
}

.team-icon {
    transition: all 0.3s ease;
}

/* Fix for links in team cards */
.team-card a.team-link {
    text-decoration: none;
    color: inherit;
}

/* Features Section */
.features {
    padding: 7rem 2rem; /* More vertical padding */
    background-color: rgba(0, 0, 0, 0.6); /* More transparent */
}

.section-title {
    font-size: 2.8rem; /* Bigger section title */
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    color: var(--light);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px; /* Longer underline */
    height: 3px; /* Thicker underline */
    background-color: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); /* Wider cards */
    gap: 2.5rem; /* More space between cards */
    max-width: 1500px; /* Wider container */
    margin: 0 auto;
}

.feature-card {
    background-color: rgba(26, 44, 66, 0.6); /* More transparent */
    border-radius: 15px;
    padding: 2.5rem; /* More padding */
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    height: 100%;
    transform: scale(1.02); /* Slightly scale up all cards */
}

.feature-icon {
    width: 80px; /* Larger icons */
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    font-size: 2rem; /* Bigger icons */
    color: white;
    box-shadow: 0 8px 20px rgba(63, 161, 255, 0.3);
}

.feature-card h3 {
    font-size: 1.6rem; /* Bigger heading */
    margin-bottom: 1.2rem;
    color: var(--light);
}

.feature-card p {
    color: #AAAAAA;
    line-height: 1.7;
    font-size: 1.1rem; /* Bigger text */
}

/* Call to Action */
.join-cta {
    background-image: linear-gradient(rgba(26, 44, 66, 0.7), rgba(26, 44, 66, 0.7)), /* More transparent */
                      url('../images/minecraft-cta.jpg');
    background-size: cover;
    background-position: center;
    padding: 7rem 2rem; /* More padding */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 900px; /* Wider container */
    margin: 0 auto;
    z-index: 1;
    position: relative;
    transform: scale(1.05); /* Scale up content */
}

.join-cta h2 {
    font-size: 2.8rem; /* Bigger heading */
    margin-bottom: 1.8rem;
    color: white;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.join-cta p {
    font-size: 1.35rem; /* Bigger text */
    margin-bottom: 2.8rem;
    color: #DDDDDD;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.join-cta .btn-primary {
    margin: 0 auto;
    font-size: 1.2rem; /* Bigger text */
    padding: 1.2rem 3rem; /* Larger button */
}

/* Improved Footer */
footer {
    background-color: rgba(18, 30, 45, 0.95);
    padding: 4rem 2rem 1rem;
    border-top: 2px solid rgba(63, 161, 255, 0.3);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--light);
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-column p {
    color: #AAAAAA;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column ul li a {
    color: #AAAAAA;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-column ul li a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-column ul li i {
    width: 20px;
    text-align: center;
    color: var(--primary);
}

.copyright {
    text-align: center;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #777777;
    font-size: 0.9rem;
}

/* For shop page navigation compatibility */
.nav-links a.active {
    color: #3bb9ff;
    border-bottom: 2px solid #3bb9ff;
}

/* Ensure overlay works with store popups */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: none;
}

.overlay.active {
    display: block;
}

/* Additional utility classes that might be needed */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    nav {
        padding: 0 15px;
    }
    
    .brand-text {
        font-size: 1.5rem;
    }

    .brand-icon {
        width: 35px;
        height: 35px;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        flex-direction: column;
        background-color: rgba(18, 30, 45, 0.95);
        gap: 1.5rem;
        padding: 2rem;
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hamburger {
        display: block;
    }
    
    /* Hero section adjustments */
    .hero-content {
        transform: scale(1); /* Reset scale for mobile */
        max-width: 100%;
    }
    
    .hero-logo {
        max-width: 80%; /* Make logo responsive */
        margin-bottom: 20px;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    /* Server IP box adjustments */
    .server-ip {
        padding: 12px 20px;
        gap: 15px;
        width: 90%;
        max-width: 320px;
        flex-direction: column; /* Stack vertically on mobile */
    }
    
    .server-ip span {
        font-size: 1.3rem;
    }
    
    .copy-btn {
        width: 100%;
        justify-content: center;
        margin-top: 5px;
    }
    
    /* Button adjustments */
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 90%;
        max-width: 320px;
    }
    
    .btn {
        width: 100%;
        padding: 12px 0;
        font-size: 1.1rem;
    }
    
    /* Stats section adjustments */
    .stat-item {
        transform: scale(0.9);
    }
    
    /* Feature cards adjustments */
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        transform: scale(1);
        padding: 1.8rem;
    }
    
    /* Call to action adjustments */
    .cta-content {
        transform: scale(1);
    }
    
    .join-cta h2 {
        font-size: 2rem;
    }
    
    .join-cta p {
        font-size: 1.1rem;
    }
    
    /* Footer adjustments */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-column {
        width: 100%;
    }
}

/* Small phone adjustments */
@media screen and (max-width: 480px) {
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .server-ip {
        padding: 10px 15px;
    }
    
    .server-ip span {
        font-size: 1.2rem;
    }
    
    .stat-container {
        flex-direction: column;
        gap: 25px;
    }
    
    .stat-item {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card h3 {
        font-size: 1.4rem;
    }
    
    .join-cta h2 {
        font-size: 1.7rem;
    }
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Full-Screen Notification */
.fullscreen-notification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.fullscreen-notification.active {
    opacity: 1;
    pointer-events: auto;
}

.notification-content {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 10px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.fullscreen-notification.active .notification-content {
    transform: scale(1);
}

.notification-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-icon i {
    font-size: 40px;
    color: white;
}

.notification-content h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 10px;
}

.notification-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
}

.fullscreen-notification.discord .notification-content {
    background: linear-gradient(135deg, var(--discord), #4752C4);
}

/* Improved Copy Notification */
.copy-notification {
    display: none; /* Hide the old notification */
}

/* Discord Popup */
.discord-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background-color: rgba(26, 44, 66, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1002;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    border: 2px solid var(--discord);
    text-align: center;
}

.discord-popup.active {
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, -50%) scale(1);
}

.discord-popup h3 {
    color: var(--discord);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.discord-popup p {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.discord-invite {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    font-family: monospace;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.discord-invite span {
    color: white;
    font-weight: bold;
}

.popup-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.popup-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.popup-btn-primary {
    background-color: var(--discord);
    color: white;
}

.popup-btn-primary:hover {
    background-color: #4752C4;
    transform: translateY(-2px);
}

.popup-btn-secondary {
    background-color: transparent;
    color: var(--light);
    border: 2px solid var(--discord);
}

.popup-btn-secondary:hover {
    background-color: rgba(88, 101, 242, 0.1);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: none;
}

.overlay.active {
    display: block;
}

/* Animation for copied notification */
@keyframes copied {
    0% {
        transform: translate(-50%, 0) scale(1);
    }
    50% {
        transform: translate(-50%, -10px) scale(1.05);
    }
    100% {
        transform: translate(-50%, 0) scale(1);
    }
}

.copy-notification.copied {
    animation: copied 0.5s ease;
}

/* Hook Animation for Check Icon */
@keyframes draw-hook {
    0% {
        stroke-dasharray: 0, 60;
        stroke-dashoffset: 0;
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        stroke-dasharray: 30, 60;
        stroke-dashoffset: -20;
        opacity: 1;
    }
    100% {
        stroke-dasharray: 60, 60;
        stroke-dashoffset: -50;
        opacity: 1;
        transform: scale(1);
    }
}

.notification-icon i.animate-hook {
    position: relative;
    animation: bounceIn 0.5s forwards, hookDraw 0.3s 0.2s forwards;
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.1); opacity: 1; }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

@keyframes hookDraw {
    0% { color: rgba(255, 255, 255, 0.5); }
    100% { color: white; }
}

/* Make the notification transition smoother */
.fullscreen-notification {
    transition: opacity 0.3s ease;
}
