:root {
    --discord-blue: #5865F2;
    --discord-dark: #313338;
    --discord-darker: #1e1f22;
    --discord-light: #dcddde;
    --discord-white: #ffffff;
    --banner-bg: #2b2d31;
}

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

body {
    font-family: Arial, sans-serif;
    background-color: var(--discord-dark);
    color: var(--discord-light);
    padding-top: 150px;
}

.banner {
    position: relative;
    background: linear-gradient(
        45deg,
        #5865F2 0%,
        #4752c4 25%,
        #7289da 50%,
        #4752c4 75%,
        #5865F2 100%
    );
    background-size: 200% 200%;
    animation: gradientBG 15s ease infinite;
    min-height: 450px;
    display: flex;
    align-items: center;
    border-radius: 16px;
    margin: 0 auto 2rem auto;
    max-width: 1400px;
    overflow: visible;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.banner-content {
    max-width: 600px;
    margin-left: 8%;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.banner-content h1 {
    color: white;
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.banner-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 480px;
}

.banner-image {
    position: absolute;
    bottom: 0;
    right: 5%;
    width: 45%;
    height: 130%;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
}

.cta-button {
    background-color: #ffffff;
    color: #5865F2;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #f2f3f5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

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

/* New Feature Cards Styles */
.features {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(
        145deg,
        rgba(88, 101, 242, 0.1) 0%,
        rgba(114, 137, 218, 0.05) 100%
    );
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: 0.5s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(88, 101, 242, 0.5);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(88, 101, 242, 0.2);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-icon {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #5865F2, #7289da);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.feature-card h3 {
    color: var(--discord-white);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--discord-light);
    line-height: 1.6;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .banner {
        border-radius: 0;
        min-height: auto;
        flex-direction: column;
        padding: 2rem 1rem;
    }

    .banner-image {
        position: relative;
        right: 0;
        width: 100%;
        height: auto;
        margin-top: 2rem;
    }

    .banner-image img {
        height: auto;
        max-height: 300px;
        object-fit: contain;
    }

    .banner-content {
        text-align: center;
        margin: 0 auto;
        padding: 1rem;
        width: 100%;
    }

    .banner-content h1 {
        font-size: 3.5rem;
    }

    .banner-content p {
        margin: 0 auto 2rem auto;
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .features {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
    }

    body {
        padding-top: 0;
    }
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.logo {
    height: 80px;
    width: auto;
}

.logo-container h1 {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .logo-container {
        justify-content: center;
    }
} 