/* Modern styling for the Independent Artists Platform */

/* Holographic Gate Styles */
.holographic-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #0a0a0a;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.holographic-gate canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gate-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.gate-title h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #6366f1, #f59e0b, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.gate-title p {
    font-size: 1.2rem;
    margin: 0.5rem 0 0 0;
    opacity: 0.8;
    font-weight: 300;
}

.gate-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.8), rgba(245, 158, 11, 0.8));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

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

.gate-button:hover::before {
    left: 100%;
}

.gate-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.9), rgba(245, 158, 11, 0.9));
}

/* Authentication Styles */
.gate-auth {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin: 1rem 0;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 300px;
}

.auth-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.auth-form label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9rem;
}

.auth-form input {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.auth-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.auth-form input:focus {
    outline: none;
    border-color: rgba(99, 102, 241, 0.5);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.auth-submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.8), rgba(245, 158, 11, 0.8));
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    backdrop-filter: blur(10px);
    margin-top: 0.5rem;
}

.auth-submit-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.9), rgba(245, 158, 11, 0.9));
}

.auth-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.auth-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.auth-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

.auth-divider {
    position: relative;
    width: 100%;
    text-align: center;
    margin: 1rem 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.auth-divider span {
    background: #0a0a0a;
    padding: 0 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.auth-status {
    margin-top: 1rem;
    animation: fadeInUp 0.5s ease-out;
}

.auth-success {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.5);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    color: #10b981;
    text-align: center;
    font-weight: 500;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.auth-success span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.auth-error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.5);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    color: #ef4444;
    text-align: center;
    font-weight: 500;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2);
}

.auth-error span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Disabled Button State */
.gate-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(99, 102, 241, 0.3);
}

.gate-button:disabled:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

/* Bypass Button */
.bypass-button {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.8), rgba(239, 68, 68, 0.8));
    margin-top: 1rem;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
}

.bypass-button:hover {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.9), rgba(239, 68, 68, 0.9));
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.gate-nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.gate-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.gate-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}


.main-content {
    display: none;
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
    }
    100% {
        text-shadow: 0 0 50px rgba(99, 102, 241, 0.8), 0 0 80px rgba(245, 158, 11, 0.3);
    }
}

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

/* Responsive Gate Styles */
@media (max-width: 768px) {
    .gate-title h1 {
        font-size: 2rem;
    }
    
    .gate-title p {
        font-size: 1rem;
    }
    
    .gate-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .gate-nav {
        gap: 1rem;
    }
    
    .gate-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .gate-auth {
        gap: 1rem;
        margin: 0.5rem 0;
    }
    
    .auth-form {
        max-width: 280px;
    }
    
    .auth-divider span {
        font-size: 0.8rem;
        padding: 0 0.75rem;
    }
    
    .auth-success {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .auth-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .gate-title h1 {
        font-size: 1.5rem;
    }
    
    .gate-content {
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .gate-nav {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .gate-auth {
        gap: 0.75rem;
        margin: 0.25rem 0;
    }
    
    .auth-form {
        max-width: 250px;
        gap: 0.75rem;
    }
    
    .auth-form input {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .auth-submit-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .auth-divider span {
        font-size: 0.75rem;
        padding: 0 0.5rem;
    }
    
    .auth-success {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .auth-links {
        gap: 0.25rem;
    }
    
    .auth-link {
        font-size: 0.8rem;
    }
}

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #f59e0b;
    --accent-color: #10b981;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --background-light: #f8fafc;
    --background-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    font-size: 16px;
    scroll-behavior: smooth;
}

.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

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

.header h1 {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
}

.nav a:hover {
    background-color: var(--background-light);
    color: var(--primary-color);
}

.nav a.active {
    background-color: var(--primary-color);
    color: white;
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 50%;
}


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

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--background-white);
    padding: 3rem;
    margin-bottom: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.hero-image {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-graphic {
    position: relative;
    width: 200px;
    height: 200px;
}

.graphic-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 6s ease-in-out infinite;
}

.graphic-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.graphic-waves::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite 1s;
}

.graphic-dots {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: twinkle 2s ease-in-out infinite;
}

.graphic-dots::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 15px;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: twinkle 2s ease-in-out infinite 0.5s;
}

.graphic-dots::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 25px;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: twinkle 2s ease-in-out infinite 1s;
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
    50% { transform: translate(-50%, -50%) translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.3; }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.hero-text {
    padding: 1rem 0;
}

.hero-text h2 {
    margin-top: 0;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

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

.button:hover::before {
    left: 100%;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.button:active {
    transform: translateY(0);
}

.features {
    background: var(--background-white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
}

.features h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Testimonials section */
.testimonials {
    background: var(--background-white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
}

.testimonials h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-item {
    background: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
}

.testimonial-item::before {
    content: '"';
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    font-size: 4rem;
    color: var(--primary-color);
    font-family: serif;
    line-height: 1;
}

.testimonial-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--text-primary);
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.guidelines {
    background: var(--background-white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
    border-left: 4px solid var(--secondary-color);
}

.guidelines h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.guidelines p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
}

.form-page .form-container {
    background: var(--background-white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

.form-page h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.form-page p {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    box-sizing: border-box;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--background-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--background-light);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.form-group.checkbox input {
    margin: 0;
    width: auto;
    margin-top: 0.2rem;
}

.form-group.checkbox label {
    margin: 0;
    font-weight: 500;
    line-height: 1.5;
}

/* Form validation styles */
.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group.error label {
    color: #ef4444;
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.error-message::before {
    content: '⚠';
    font-size: 0.75rem;
}

/* Media upload styles */
.form-help {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.file-upload-area {
    border: 2px dashed var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    background: var(--background-light);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.file-upload-area:hover {
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.05);
}

.file-upload-area.dragover {
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
    transform: scale(1.02);
}

.upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.upload-icon {
    width: 3rem;
    height: 3rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.file-upload-area:hover .upload-icon {
    color: var(--primary-color);
    transform: scale(1.1);
}

.upload-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.upload-subtext {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.file-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.preview-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.preview-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.preview-image,
.preview-video {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.preview-video {
    background: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-info {
    padding: 0.75rem;
    background: var(--background-white);
    border-top: 1px solid var(--border-color);
}

.preview-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.preview-size {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin: 0;
}

.remove-file {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.875rem;
}

.remove-file:hover {
    background: #dc2626;
    transform: scale(1.1);
}

.upload-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--border-color);
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    width: 0%;
    transition: width 0.3s ease;
}

/* Video preview specific styles */
.video-icon {
    width: 2rem;
    height: 2rem;
    color: var(--text-secondary);
}

.preview-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Upload status indicators */
.upload-status {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 500;
}

.upload-success {
    background: rgba(16, 185, 129, 0.9);
}

.upload-error {
    background: rgba(239, 68, 68, 0.9);
}

.upload-loading {
    background: rgba(99, 102, 241, 0.9);
}

/* Account Creation Styles */
.auth-section {
    margin: 2rem 0;
    text-align: center;
}

.account-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.account-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.account-form label {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.account-form input {
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--background-white);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.account-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.account-submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    margin-top: 0.5rem;
}

.account-submit-button:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.account-status {
    margin-top: 1rem;
    animation: fadeInUp 0.5s ease-out;
}

.account-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    color: var(--accent-color);
    text-align: center;
    font-weight: 500;
}

.account-success span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.account-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    color: #ef4444;
    text-align: center;
    font-weight: 500;
}

.account-error span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.account-info {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    color: var(--primary-color);
    text-align: center;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.auth-divider {
    position: relative;
    margin: 1.5rem 0;
    text-align: center;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}

.auth-divider span {
    background: var(--background-white);
    padding: 0 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.google-signin-container {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

/* Custom Google Sign-In Button Styling */
.g_id_signin {
    transition: var(--transition);
}

.g_id_signin:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Override Google's default styling */
.g_id_signin iframe {
    border-radius: var(--border-radius) !important;
    box-shadow: var(--shadow-sm) !important;
    transition: var(--transition) !important;
}

.g_id_signin iframe:hover {
    box-shadow: var(--shadow-md) !important;
}

/* Google Auth Success/Error States */
.auth-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--accent-color);
    border-radius: var(--border-radius);
    padding: 1rem;
    margin: 1rem 0;
    color: var(--accent-color);
    text-align: center;
}

.auth-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    border-radius: var(--border-radius);
    padding: 1rem;
    margin: 1rem 0;
    color: #ef4444;
    text-align: center;
}

.auth-info {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: 1rem;
    margin: 1rem 0;
    color: var(--primary-color);
    text-align: center;
    font-size: 0.9rem;
}

/* Auto-fill form fields when Google auth succeeds */
.form-group.auto-filled {
    background: rgba(16, 185, 129, 0.05);
    border-radius: var(--border-radius);
    padding: 0.5rem;
}

.form-group.auto-filled input {
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--accent-color);
}

.form-group.auto-filled label::after {
    content: ' ✓';
    color: var(--accent-color);
    font-weight: bold;
}

.footer {
    background: rgba(31, 41, 55, 0.95);
    backdrop-filter: blur(10px);
    color: #e5e7eb;
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Content pages styling */
.content {
    background: var(--background-white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
}

.content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.content h2:first-child {
    margin-top: 0;
}

.content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.content ul {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content li {
    margin-bottom: 0.5rem;
}

.content ol {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .nav {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav a {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .main {
        padding: 1rem;
    }
    
    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .hero-image {
        height: 250px;
    }
    
    .hero-graphic {
        width: 150px;
        height: 150px;
    }
    
    .graphic-circle {
        width: 80px;
        height: 80px;
    }
    
    .graphic-waves {
        width: 120px;
        height: 120px;
    }
    
    .features {
        padding: 2rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials {
        padding: 2rem;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .guidelines {
        padding: 2rem;
    }
    
    .form-page .form-container {
        padding: 2rem;
    }
    
    .account-form {
        max-width: 350px;
        padding: 1rem;
    }
    
    .content {
        padding: 2rem;
    }
    
    .button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 1.5rem;
    }
    
    .hero-text h2 {
        font-size: 1.75rem;
    }
    
    .features {
        padding: 1.5rem;
    }
    
    .testimonials {
        padding: 1.5rem;
    }
    
    .testimonial-item {
        padding: 1.5rem;
    }
    
    .guidelines {
        padding: 1.5rem;
    }
    
    .form-page .form-container {
        padding: 1.5rem;
    }
    
    .account-form {
        max-width: 300px;
        padding: 0.75rem;
    }
    
    .account-form input {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .account-submit-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .content {
        padding: 1.5rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    .file-upload-area {
        padding: 1.5rem;
    }
    
    .file-preview {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 0.75rem;
    }
    
    .preview-image,
    .preview-video {
        height: 120px;
    }
    
    .auth-section {
        margin: 1.5rem 0;
    }
    
    .google-signin-container {
        margin: 0.75rem 0;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-image:hover {
        transform: none;
    }
    
    .feature-item:hover {
        transform: none;
    }
    
    .button:hover {
        transform: none;
    }
}

/* Focus styles for better accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-primary: #000000;
        --text-secondary: #333333;
        --border-color: #000000;
    }
    
    .hero::before {
        background: #000000;
    }
    
    .feature-item::before {
        background: #000000;
    }
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero,
.features,
.testimonials,
.guidelines,
.content {
    animation: fadeInUp 0.6s ease-out;
}

/* Performance optimizations */
.hero-image,
.feature-item,
.testimonial-item,
.button {
    will-change: transform;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Improved button animations */
.button span:last-child {
    transition: transform 0.3s ease;
}

.button:hover span:last-child {
    transform: translateX(4px);
}

/* Enhanced focus states */
.button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Gallery Styles */
.gallery-section {
    background: var(--background-white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
}

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

.gallery-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.gallery-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.upload-section {
    margin-bottom: 3rem;
}

.upload-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.upload-tab {
    padding: 1rem 2rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.upload-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.upload-tab:hover {
    color: var(--primary-color);
}

.gallery-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--background-light);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.gallery-filters {
    display: flex;
    gap: 0.5rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    background: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.filter-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.gallery-actions {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    padding: 0.5rem 1rem;
    background: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.action-btn:hover:not(:disabled) {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.action-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-item {
    background: var(--background-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.gallery-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.gallery-item.selected {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.media-container {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.media-image,
.media-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .media-overlay {
    opacity: 1;
}

.media-action {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.media-action:hover {
    background: white;
    transform: scale(1.1);
}

.media-action svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--text-primary);
}

.media-info {
    padding: 1rem;
}

.media-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.media-size {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
}

.empty-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    color: var(--text-secondary);
}

.empty-state h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.empty-state p {
    font-size: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background-color: var(--background-white);
    margin: 5% auto;
    padding: 0;
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.7);
}

.modal-body {
    padding: 0;
    text-align: center;
}

.modal-body img,
.modal-body video {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
}

.modal-footer {
    padding: 1rem;
    background: var(--background-light);
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.modal-btn {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.modal-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* Responsive Gallery Styles */
@media (max-width: 768px) {
    .gallery-section {
        padding: 2rem;
    }
    
    .gallery-header h2 {
        font-size: 1.75rem;
    }
    
    .gallery-controls {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .gallery-filters,
    .gallery-actions {
        justify-content: center;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .upload-tabs {
        flex-direction: column;
        border-bottom: none;
        border-right: 2px solid var(--border-color);
        width: fit-content;
        margin: 0 auto 2rem;
    }
    
    .upload-tab {
        border-bottom: none;
        border-right: 3px solid transparent;
        text-align: center;
    }
    
    .upload-tab.active {
        border-bottom-color: transparent;
        border-right-color: var(--primary-color);
    }
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.75rem;
    }
    
    .media-action {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .media-action svg {
        width: 1rem;
        height: 1rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-footer {
        flex-direction: column;
    }
}

/* Streaming Platform Styles */
.streaming-platform {
    background: var(--background-white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
    text-align: center;
}

.streaming-platform h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.streaming-platform p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

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

.streaming-feature {
    background: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.streaming-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.streaming-feature h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.streaming-feature p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.streaming-cta {
    text-align: center;
}

.streaming-button {
    background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.streaming-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    background: linear-gradient(135deg, #5b21b6, var(--primary-color));
}

.streaming-button span:last-child {
    font-size: 1.2rem;
    transition: var(--transition);
}

.streaming-button:hover span:last-child {
    transform: translateX(4px);
}

/* Responsive Streaming Platform Styles */
@media (max-width: 768px) {
    .streaming-platform {
        padding: 2rem;
    }
    
    .streaming-platform h2 {
        font-size: 1.75rem;
    }
    
    .streaming-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .streaming-feature {
        padding: 1.5rem;
    }
    
    .streaming-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .streaming-platform {
        padding: 1.5rem;
    }
    
    .streaming-feature {
        padding: 1.25rem;
    }
    
    .streaming-feature h3 {
        font-size: 1.1rem;
    }
    
    .streaming-feature p {
        font-size: 0.9rem;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .button {
        display: none;
    }
    
    .main {
        padding: 0;
    }
    
    .hero,
    .features,
    .testimonials,
    .guidelines,
    .content {
        box-shadow: none;
        border: 1px solid #ccc;
        page-break-inside: avoid;
    }
}