/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'CruyffSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000000;
    color: #ffffff;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

/* Global Header */
.global-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.header-left .logo {
    height: 40px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #00ff88;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ff88;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-button {
    background: #00ff88;
    color: #000000;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 120px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.cta-button.secondary:hover {
    background: #ffffff;
    color: #000000;
}

.language-selector {
    position: relative;
}

.lang-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    list-style: none;
    padding: 8px 0;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.language-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown a {
    color: #ffffff;
    text-decoration: none;
    padding: 8px 16px;
    display: block;
    transition: background 0.3s ease;
}

.lang-dropdown a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 8px;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #ffffff;
    margin: 4px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #000000;
    padding: 120px 0 80px 0;
    overflow: hidden;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 40px;
}

.hero-promo-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
}

.promo-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    transition: all 0.3s ease;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.3);
}

.promo-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 255, 136, 0.2);
}



.hero-title-container {
    margin-bottom: 20px;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 0;
}

.title-line-1 {
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #00ff88 0%, #00cc6a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: -1px;
    line-height: 0.9;
    text-transform: uppercase;
}

.title-line-2 {
    font-size: 4.2rem;
    font-weight: 800;
    display: flex;
    align-items: baseline;
    gap: 4px;
    letter-spacing: -0.5px;
    line-height: 0.9;
    text-transform: uppercase;
}

.title-line-2 .fc-part {
    color: #00ff88;
}

.title-line-2 .tm-symbol {
    color: #00ff88;
    font-size: 1.8rem;
    vertical-align: super;
    margin-left: 2px;
}

.title-line-2 .number-part {
    color: #ffffff;
}

.hero-subtitle {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #00ff88;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.0;
    position: relative;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, #00ff88 0%, transparent 100%);
    border-radius: 1px;
}

.hero-description {
    font-size: 1rem;
    max-width: 500px;
    margin: 0 0 40px 0;
    line-height: 1.7;
    color: #ffffff;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.1px;
    text-align: left;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    margin-bottom: 40px;
}

.hero-platforms {
    margin-top: 40px;
}

.hero-platforms h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    font-weight: 600;
}

/* Platform Carousel */
.platform-carousel {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.platform-slide {
    display: none;
    text-align: center;
    padding: 30px 20px;
    animation: fadeIn 0.5s ease-in-out;
}

.platform-slide.active {
    display: block;
}

.platform-icon-large {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-icon-large:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.3);
}

.platform-info h4 {
    font-size: 1.5rem;
    color: #00ff88;
    margin-bottom: 10px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.platform-info p {
    color: #ffffff;
    font-size: 1rem;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(0, 255, 136, 0.8);
    color: #000000;
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #00ff88;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(0, 255, 136, 0.6);
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Legacy platform icons for other pages */
.platform-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.platform-icon {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.platform-icon:hover {
    opacity: 1;
}

.hero-release {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.release-date {
    background: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 3px;
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Content Sections */
.content-section {
    padding: 100px 0;
    background: #000000;
}

.content-section.dark {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.8;
    color: #cccccc;
}

/* Mission Grid */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.mission-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.mission-card h3 {
    font-size: 1.5rem;
    color: #00ff88;
    margin-bottom: 20px;
}

.mission-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.tech-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.tech-card h3 {
    font-size: 1.5rem;
    color: #00ff88;
    margin-bottom: 20px;
}

.tech-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.team-card h3 {
    font-size: 1.5rem;
    color: #00ff88;
    margin-bottom: 20px;
}

.team-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    text-align: center;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
    color: #cccccc;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Limited Time Offer */
.limited-offer {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    padding: 80px 0;
}

.offer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.offer-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #00ff88;
}

.offer-content p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    color: #cccccc;
}

.countdown-timer {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    min-width: 100px;
}

.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 0.9rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Preview */
.features-preview {
    padding: 100px 0;
    background: #000000;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.feature-image {
    height: 250px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.feature-card:hover .feature-image img {
    transform: scale(1.1);
}

.feature-content {
    padding: 30px;
}

.feature-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #00ff88;
    line-height: 1.4;
}

.feature-content p {
    color: #cccccc;
    line-height: 1.6;
}

.features-cta {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #000000;
}

/* News Section */
.news-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    color: #ffffff;
}

.view-all {
    color: #00ff88;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.view-all:hover {
    color: #ffffff;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.news-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 25px;
}

.news-date {
    color: #00ff88;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.news-content h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.4;
}

.news-content p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    color: #00ff88;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #ffffff;
}

/* Community Section */
.community-section {
    padding: 100px 0;
    background: #000000;
    text-align: center;
}

.community-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.community-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
    color: #cccccc;
}

.social-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #00ff88;
    color: #000000;
    transform: translateY(-5px);
}

/* Global Footer */
.global-footer {
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-rating {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.rating-text {
    color: #cccccc;
    font-size: 0.9rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #00ff88;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.footer-disclaimers {
    margin-bottom: 30px;
}

.footer-disclaimers p {
    color: #888888;
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p {
    color: #cccccc;
    font-size: 0.9rem;
}

.footer-trust {
    color: #888888;
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        height: 60px;
        padding: 0 15px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
        padding-right: 0;
        order: 2;
    }
    
    .hero-promo-image {
        order: 1;
        margin-bottom: 20px;
        padding: 15px;
    }
    
    .promo-image {
        max-width: 100%;
    }
    
    .nav-list {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .title-line-1 {
        font-size: 3.2rem;
    }
    
    .title-line-2 {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        max-width: 100%;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    /* Platform Carousel Mobile */
    .platform-carousel {
        max-width: 300px;
    }
    
    .platform-icon-large {
        width: 150px;
        height: 150px;
    }
    
    .platform-info h4 {
        font-size: 1.2rem;
    }
    
    .platform-info p {
        font-size: 0.9rem;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .countdown-timer {
        gap: 15px;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 15px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid,
    .news-grid,
    .mission-grid,
    .tech-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-rating {
        justify-content: center;
    }
    
    .footer-copyright {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .title-line-1 {
        font-size: 2.4rem;
    }
    
    .title-line-2 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    /* Platform Carousel Small Mobile */
    .platform-carousel {
        max-width: 250px;
    }
    
    .platform-icon-large {
        width: 120px;
        height: 120px;
    }
    
    .platform-info h4 {
        font-size: 1rem;
    }
    
    .platform-info p {
        font-size: 0.8rem;
    }
    
    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    
    .offer-content h2 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .countdown-timer {
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 10px;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .hero-promo-image {
        padding: 10px;
    }
    
    .promo-image {
        max-width: 100%;
    }
} 

/* Feature List */
.feature-list {
    list-style: none;
    margin-top: 20px;
    text-align: left;
}

.feature-list li {
    color: #cccccc;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: bold;
}

/* Modes Grid */
.modes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.mode-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mode-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.mode-card h3 {
    font-size: 1.5rem;
    color: #00ff88;
    margin-bottom: 20px;
}

.mode-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Authenticity Grid */
.authenticity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.authenticity-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.authenticity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 136, 0.2);
}

.authenticity-card h3 {
    font-size: 1.3rem;
    color: #00ff88;
    margin-bottom: 15px;
}

.authenticity-card p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive adjustments for new grids */
@media (max-width: 768px) {
    .modes-grid,
    .authenticity-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-list {
        text-align: center;
    }
    
    .feature-list li {
        padding-left: 0;
        padding-top: 5px;
    }
    
    .feature-list li::before {
        position: static;
        margin-right: 8px;
    }
} 

/* Featured News */
.featured-news {
    margin-top: 60px;
}

.featured-article {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.article-image {
    height: 100%;
    min-height: 300px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.featured-article:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-category {
    color: #00ff88;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.article-content h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-content p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 25px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.article-date {
    color: #888888;
    font-size: 0.9rem;
}

/* Community Updates */
.community-updates {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.update-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.update-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.update-card h3 {
    font-size: 1.5rem;
    color: #00ff88;
    margin-bottom: 20px;
}

.update-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 25px;
}

.update-link {
    color: #00ff88;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.update-link:hover {
    color: #ffffff;
}

/* Newsletter Signup */
.newsletter-signup {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-signup h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.newsletter-signup p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-form .form-group {
    display: flex;
    gap: 15px;
    width: 100%;
    max-width: 500px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
    color: #888888;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: #00ff88;
}

.newsletter-form button {
    padding: 15px 30px;
    white-space: nowrap;
}

/* Responsive adjustments for news page */
@media (max-width: 768px) {
    .featured-article {
        grid-template-columns: 1fr;
    }
    
    .article-image {
        min-height: 200px;
    }
    
    .article-content {
        padding: 30px 25px;
    }
    
    .article-content h3 {
        font-size: 1.5rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .community-updates {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
} 

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    color: #cccccc;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Community Features */
.community-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.community-features .feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.community-features .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.community-features .feature-content h3 {
    font-size: 1.5rem;
    color: #00ff88;
    margin-bottom: 20px;
}

.community-features .feature-content p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 25px;
}

.feature-link {
    color: #00ff88;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.feature-link:hover {
    color: #ffffff;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.event-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.event-card h3 {
    font-size: 1.5rem;
    color: #00ff88;
    margin-bottom: 20px;
}

.event-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 25px;
}

.event-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.event-type,
.event-frequency {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Social Grid */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.social-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 136, 0.2);
}

.social-card h3 {
    font-size: 1.3rem;
    color: #00ff88;
    margin-bottom: 15px;
}

.social-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.social-handle {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Guidelines Grid */
.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.guideline-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guideline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 136, 0.2);
}

.guideline-card h3 {
    font-size: 1.3rem;
    color: #00ff88;
    margin-bottom: 15px;
}

.guideline-card p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive adjustments for community page */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .community-features,
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .social-grid,
    .guidelines-grid {
        grid-template-columns: 1fr;
    }
    
    .event-meta {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
} 

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 136, 0.2);
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: #00ff88;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Platforms Grid */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.platform-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.platform-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.platform-card h3 {
    font-size: 1.5rem;
    color: #00ff88;
    margin-bottom: 15px;
}

.platform-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.platform-price {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
}

/* Editions Grid */
.editions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.edition-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.edition-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.edition-card.featured {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid rgba(0, 255, 136, 0.3);
}

.edition-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #00ff88;
    color: #000000;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.edition-card h3 {
    font-size: 1.5rem;
    color: #00ff88;
    margin-bottom: 15px;
}

.edition-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
}

.edition-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.edition-features li {
    color: #cccccc;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.edition-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: bold;
}

/* Requirements Grid */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.requirement-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.requirement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.requirement-card h3 {
    font-size: 1.5rem;
    color: #00ff88;
    margin-bottom: 25px;
}

.requirement-list {
    list-style: none;
    text-align: left;
}

.requirement-list li {
    color: #cccccc;
    margin-bottom: 12px;
    line-height: 1.6;
}

.requirement-list li strong {
    color: #ffffff;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 25px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 136, 0.2);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: #00ff88;
    margin-bottom: 15px;
}

.faq-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* Responsive adjustments for buy page */
@media (max-width: 768px) {
    .benefits-grid,
    .platforms-grid,
    .editions-grid,
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .edition-features {
        text-align: center;
    }
    
    .edition-features li {
        padding-left: 0;
        padding-top: 5px;
    }
    
    .edition-features li::before {
        position: static;
        margin-right: 8px;
    }
    
    .requirement-list {
        text-align: center;
    }
}

/* Trailer Video Section */
.trailer-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.trailer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.trailer-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.trailer-header .section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #00ff88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trailer-header .section-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.video-container {
    max-width: 1000px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 255, 136, 0.3);
}

.video-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #00ff88, #00cc6a, #00ff88);
    border-radius: 14px;
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite alternate;
}

@keyframes borderGlow {
    0% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
    z-index: 2;
}

.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-wrapper:not(:has(iframe[src*="youtube"])) .video-fallback,
.video-wrapper iframe[src=""] + .video-fallback {
    opacity: 1;
}

.fallback-content {
    text-align: center;
    color: #ffffff;
    padding: 40px;
}

.fallback-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.fallback-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #00ff88;
}

.fallback-content p {
    color: #cccccc;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.fallback-content .cta-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

.trailer-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.trailer-cta .cta-button {
    margin: 0 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
}

/* Fan Site Disclaimer */
.fan-site-disclaimer {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid #00ff88;
    text-align: center;
}

.fan-site-disclaimer p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.fan-site-disclaimer strong {
    color: #00ff88;
    font-weight: 600;
}

/* Responsive Design for Trailer Section */
@media (max-width: 768px) {
    .trailer-section {
        padding: 60px 0;
    }
    
    .trailer-header .section-title {
        font-size: 2.5rem;
    }
    
    .trailer-header .section-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .video-container {
        margin: 0 20px 40px;
    }
    
    .trailer-cta .cta-button {
        display: block;
        margin: 10px auto;
        max-width: 250px;
    }
    
    .fan-site-disclaimer {
        margin: 30px 20px 0;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .trailer-header .section-title {
        font-size: 2rem;
    }
    
    .trailer-header .section-subtitle {
        font-size: 0.9rem;
    }
    
    .video-container {
        margin: 0 10px 30px;
    }
    
    .fan-site-disclaimer p {
        font-size: 13px;
    }
}

/* Feedback Page Styles */
.feedback-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.feedback-section {
    padding: 80px 0;
    background: #000000;
}

.feedback-header {
    text-align: center;
    margin-bottom: 60px;
}

.feedback-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.feedback-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ff88;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #cccccc;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #cccccc;
    font-size: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #ffffff;
    font-size: 14px;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.checkmark {
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #00ff88;
    font-weight: bold;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.form-actions .cta-button {
    flex: 1;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
}

.feedback-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card h3 {
    color: #00ff88;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    color: #cccccc;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.info-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: bold;
}

/* Recent Feedback Section */
.recent-feedback-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feedback-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feedback-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 136, 0.2);
}

.feedback-card .feedback-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.feedback-type {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.feedback-type.gameplay {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
}

.feedback-type.features {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.feedback-type.ui {
    background: rgba(33, 150, 243, 0.2);
    color: #2196f3;
}

.feedback-date {
    color: #cccccc;
    font-size: 12px;
}

.feedback-card h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.feedback-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feedback-status {
    display: flex;
    justify-content: flex-end;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.implemented {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
}

.status-badge.under-review {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

/* Impact Section */
.impact-section {
    padding: 80px 0;
    background: #000000;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.impact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.impact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.impact-card h3 {
    color: #00ff88;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.impact-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Responsive Design for Feedback Page */
@media (max-width: 768px) {
    .feedback-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feedback-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .feedback-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .feedback-form {
        padding: 20px 15px;
    }
    
    .info-card {
        padding: 20px 15px;
    }
    
    .feedback-card {
        padding: 20px 15px;
    }
    
    .impact-card {
        padding: 30px 20px;
    }
}

/* ========================================
   VIDEO MODAL STYLES
   ======================================== */

.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    max-height: 80vh;
    background: #000000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 255, 136, 0.3);
}

.modal-content .close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    border: none;
    font-size: 28px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: all 0.3s ease;
}

.modal-content .close:hover {
    background: #00ff88;
    color: #000000;
    transform: scale(1.1);
}

.modal-content .video-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.modal-content .video-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    border-radius: 10px;
}

/* 移动端响应式 */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 70vh;
    }
    
    .modal-content .close {
        top: 10px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 24px;
    }
    
    .modal-content .video-container iframe {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        max-height: 60vh;
    }
    
    .modal-content .close {
        top: 8px;
        right: 12px;
        width: 30px;
        height: 30px;
        font-size: 20px;
    }
    
    .modal-content .video-container iframe {
        min-height: 250px;
    }
} 