/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    flex-wrap: wrap;
}

.header-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.header-btn {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 0.7rem 1.4rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.header-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.5);
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
}

.header-btn.secondary {
    background: rgba(255, 255, 255, 0.95);
    color: #dc2626;
    border: 3px solid #dc2626;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    font-weight: 700;
    text-shadow: none;
}

.header-btn.secondary:hover {
    background: #dc2626;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 50px;
    width: auto;
    margin-right: 0;
    border-radius: 8px;
    background: white;
    padding: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.5));
}

/* Navigation styles removed - navigation moved to footer */

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Banner Styles */
.banner {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.2);
    margin: 2rem 0;
    transition: transform 0.3s ease;
}

.banner:hover {
    transform: scale(1.02);
}

.banner-first {
    margin-top: 0;
}

/* Section Styles */
section {
    background: white;
    margin: 2rem 0;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #dc2626;
    transition: all 0.3s ease;
}

section:hover {
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.15);
    transform: translateY(-2px);
}

section h1 {
    color: #dc2626;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

section h2 {
    color: #b91c1c;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    border-bottom: 2px solid #fecaca;
    padding-bottom: 0.5rem;
}

section h3 {
    color: #991b1b;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

section p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
}

section ul, section ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

section li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

section strong {
    color: #dc2626;
    font-weight: 600;
}

/* Links */
a {
    color: #dc2626;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #b91c1c;
    text-decoration: underline;
}

/* Lists */
ul li {
    position: relative;
}

ul li::before {
    content: '▶';
    color: #dc2626;
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
}

/* Definition Lists */
dl {
    margin: 1rem 0;
}

dt {
    font-weight: bold;
    color: #dc2626;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

dd {
    margin-bottom: 1rem;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 3px solid #fecaca;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    border-top: 5px solid #dc2626;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3,
.footer-title {
    color: #dc2626;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    display: block;
}

.footer-section p,
.footer-section a {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #dc2626;
}

.footer-bottom {
    border-top: 1px solid #374151;
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

/* Mobile menu styles removed - navigation moved to footer */

/* Header scroll effect */
.header.scrolled {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.95) 0%, rgba(185, 28, 28, 0.95) 50%, rgba(153, 27, 27, 0.95) 100%);
    backdrop-filter: blur(10px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
        justify-content: space-between;
    }
    
    .header-buttons {
        gap: 0.5rem;
    }
    
    .header-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .main-content {
        padding: 1rem;
    }
    
    section {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    section h1 {
        font-size: 2rem;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .banner {
        margin: 1rem 0;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0.5rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .logo img {
        height: 40px;
        padding: 3px;
    }
    
    .main-content {
        padding: 0.5rem;
    }
    
    section {
        padding: 1rem;
    }
    
    section h1 {
        font-size: 1.8rem;
    }
    
    section h2 {
        font-size: 1.3rem;
    }
}

/* Animation for smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #dc2626;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b91c1c;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeInUp 0.6s ease-out;
}

/* Button styles for interactive elements */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
    background: linear-gradient(135deg, #b91c1c, #991b1b);
}

/* Card styles for better content organization */
.card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #dc2626;
    margin: 1rem 0;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.15);
    transform: translateY(-2px);
}

/* Author photo styles */
.author-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #dc2626;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    transition: transform 0.3s ease;
}

.author-photo:hover {
    transform: scale(1.05);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.author-title {
    font-size: 1.2rem;
    color: #dc2626;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Responsive author photo */
@media (max-width: 768px) {
    .author-info {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .author-photo {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .author-photo {
        width: 100px;
        height: 100px;
    }
    
    .author-title {
        font-size: 1rem;
    }
}

/* Platforms Section */
.platforms-section {
    background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
    padding: 2.5rem 2rem;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.15);
    border: 3px solid #fecaca;
    position: relative;
    overflow: hidden;
}

.platforms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #b91c1c, #dc2626);
}

.platforms-header {
    text-align: center;
    margin-bottom: 2rem;
}

.platforms-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.platforms-title {
    display: block;
    color: #dc2626;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.platforms-subtitle {
    display: block;
    color: #6b7280;
    font-size: 1rem;
    font-weight: 500;
}

.platforms-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    align-items: start;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    align-items: center;
}

.alov-banner {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 2rem;
    display: block;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.alov-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.alov-banner:hover .alov-play-btn {
    transform: translate(-50%, -50%) scale(1.05);
    background: rgba(185, 28, 28, 0.95);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

.alov-banner:hover .btn-arrow {
    transform: translateX(3px);
}

/* FAQ Accordion */
.faq-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 3rem 2rem;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
}

.faq-section h2 {
    text-align: center;
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #f1f5f9;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.15);
    border-color: #dc2626;
}

.faq-item.active {
    border-color: #dc2626;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.2);
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.faq-question:hover {
    background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
}

.faq-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: transform 0.3s ease;
}

.faq-text {
    flex: 1;
    font-weight: 600;
    font-size: 1.1rem;
    color: #1e293b;
    transition: color 0.3s ease;
}

.faq-item.active .faq-text {
    color: white;
}

.faq-arrow {
    font-size: 1.2rem;
    color: #dc2626;
    transition: all 0.3s ease;
    transform: rotate(0deg);
}

.faq-item.active .faq-arrow {
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #ffffff;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    color: #475569;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.alov-banner-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.alov-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: rgba(220, 38, 38, 0.95);
    color: #ffffff;
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    z-index: 10;
    white-space: nowrap;
    min-width: fit-content;
    pointer-events: none;
}


.btn-icon {
    font-size: 1rem;
}

.btn-text {
    font-weight: 700;
    font-size: 0.9rem;
}

.btn-arrow {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}


/* Aviator Info Section */
.aviator-info-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 3rem 2rem;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
}

.aviator-info-section h2 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.aviator-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2.5rem;
    align-items: start;
}

.aviator-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.aviator-text li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    color: #475569;
    line-height: 1.6;
}

.aviator-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #dc2626;
    font-weight: bold;
    font-size: 1.2rem;
}

.aviator-text p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.platform-item {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
    text-decoration: none;
    display: block;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.platform-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #dc2626, #b91c1c);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.platform-item:hover::before {
    transform: scaleX(1);
}

.platform-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.2);
    border-color: #dc2626;
}

.platform-item.featured {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    border-color: #dc2626;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.platform-item.featured:hover {
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
    transform: translateY(-8px);
}

.platform-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.platform-item.featured .platform-logo {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.platform-item:hover .platform-logo {
    transform: scale(1.1);
}

.platform-name {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.platform-item.featured .platform-name {
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.platform-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Responsive platforms */
@media (max-width: 1024px) {
    .platforms-content {
        grid-template-columns: 1fr 280px;
        gap: 1.5rem;
    }

    
    .alov-play-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .btn-icon {
        font-size: 0.9rem;
    }
    
    .btn-text {
        font-size: 0.8rem;
    }
    
    .btn-arrow {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .platforms-section {
        padding: 2rem 1rem;
    }
    
    .platforms-title {
        font-size: 1.6rem;
    }
    
    .platforms-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .alov-banner {
        position: static;
        order: -1;
    }
    
    .platforms-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .platform-item {
        padding: 1.2rem;
    }
    
    .platform-logo {
        width: 50px;
        height: 50px;
    }
    
    .platform-name {
        font-size: 1rem;
    }
    
    
    .alov-play-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .btn-icon {
        font-size: 0.8rem;
    }
    
    .btn-text {
        font-size: 0.8rem;
    }
    
    .btn-arrow {
        font-size: 0.8rem;
    }
    
    /* Aviator Info Section Mobile */
    .aviator-info-section {
        padding: 2rem 1rem;
    }
    
    .aviator-info-section h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .aviator-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .alov-banner {
        order: -1;
    }
}

@media (max-width: 480px) {
    .platforms-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }
    
    .platform-item {
        padding: 1rem;
    }
    
    .platform-logo {
        width: 45px;
        height: 45px;
    }
    
    .platform-name {
        font-size: 0.9rem;
    }
    
    
    .alov-play-btn {
        padding: 0.5rem 0.7rem;
        font-size: 0.7rem;
    }
    
    .btn-icon {
        font-size: 0.7rem;
    }
    
    .btn-text {
        font-size: 0.7rem;
    }
    
    .btn-arrow {
        font-size: 0.7rem;
    }
    
    /* FAQ Mobile */
    .faq-section {
        padding: 2rem 1rem;
    }
    
    .faq-section h2 {
        font-size: 1.6rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-text {
        font-size: 1rem;
    }
    
    .faq-icon {
        font-size: 1.2rem;
        margin-right: 0.8rem;
    }
    
    .faq-arrow {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem 1rem;
    }
    
    /* Aviator Info Section Mobile Small */
    .aviator-info-section {
        padding: 1.5rem 1rem;
    }
    
    .aviator-info-section h2 {
        font-size: 1.4rem;
    }
    
    .aviator-text li {
        font-size: 0.9rem;
    }
    
    .aviator-text p {
        font-size: 1rem;
    }
}


/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    display: none;
    opacity: 0;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6);
    background: linear-gradient(135deg, #b91c1c, #991b1b);
}

.back-to-top.show {
    display: block;
    opacity: 1;
}

/* Responsive back to top button */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
