/* Preview Page Specific Styles */
.preview-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.preview-header {
    text-align: center;
    margin-bottom: 3rem;
}

.preview-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.preview-subtitle {
    font-size: 1.2rem;
    color: #b3b3ff;
    margin: 0;
}

.preview-section {
    margin-bottom: 4rem;
}

.preview-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #fff;
    font-weight: 700;
}

.embed-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.discord-embed {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 500px;
    width: 100%;
}

.discord-embed:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(77, 68, 226, 0.3);
}

.embed-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.embed-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 600;
}

.embed-info p {
    color: #b3b3ff;
    line-height: 1.6;
    margin: 0;
}

/* Features Section */
.features-section {
    margin: 4rem 0;
    text-align: center;
}

.features-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #fff;
    font-weight: 700;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(77, 68, 226, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 600;
}

.feature-card p {
    color: #b3b3ff;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 4rem 0 2rem 0;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #fff;
    font-weight: 700;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-btn {
    background: linear-gradient(135deg, #4d44e2 0%, #6a5cff 100%);
    color: #fff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(77, 68, 226, 0.3);
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    line-height: 1.2;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(77, 68, 226, 0.4);
    background: linear-gradient(135deg, #5a51e8 0%, #7a6cff 100%);
}

.cta-support-link {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    text-align: center;
    line-height: 1.2;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .preview-main {
        padding: 1rem;
    }
    
    .preview-header h1 {
        font-size: 2rem;
    }
    
    .preview-subtitle {
        font-size: 1rem;
    }
    
    .embed-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .discord-embed {
        max-width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-section {
        padding: 2rem 1rem;
        margin: 2rem 0 1rem 0;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn, .cta-support-link {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .preview-header h1 {
        font-size: 1.8rem;
    }
    
    .preview-section h2 {
        font-size: 1.5rem;
    }
    
    .discord-embed {
        padding: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
}

/* Animation for embed images */
.embed-image {
    transition: transform 0.3s ease;
}

.embed-image:hover {
    transform: scale(1.02);
}

/* Discord-like color scheme variables */
:root {
    --discord-dark: #2C2F33;
    --discord-darker: #23272A;
    --discord-light: #99AAB5;
    --discord-lighter: #FFFFFF;
    --discord-accent: #7289DA;
    --discord-green: #43B581;
    --discord-red: #F04747;
    --discord-yellow: #FAA61A;
}

/* Additional hover effects */
.discord-embed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(77, 68, 226, 0.1) 0%, rgba(106, 92, 255, 0.1) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.discord-embed:hover::before {
    opacity: 1;
}

/* Loading animation for images */
.embed-image {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation for multiple embeds */
.preview-section:nth-child(2) .discord-embed {
    animation-delay: 0.1s;
}

.preview-section:nth-child(3) .discord-embed {
    animation-delay: 0.2s;
}

.preview-section:nth-child(4) .discord-embed {
    animation-delay: 0.3s;
} 