/* EA.com Official Style - Exact Replica */

/* ============================================
   EA.COM EXACT COLOR PALETTE
============================================ */

:root {
    /* EA.com Official Colors - Exact Match */
    --ea-red: #f05556;              /* EA's signature red #f05556 */
    --ea-red-dark: #d94345;         /* Darker shade of EA red */
    --ea-white: #FFFFFF;            /* Pure white */
    --ea-black: #000000;            /* Pure black */
    --ea-gray-light: #f8f9fa;       /* Very light gray background */
    --ea-gray-medium: #6c757d;      /* Medium gray for text */
    --ea-gray-dark: #343a40;        /* Dark gray for headings */
    --ea-gray-border: #dee2e6;      /* Light gray for borders */
    --ea-blue: #007bff;             /* Accent blue */
    --ea-blue-dark: #0056b3;        /* Darker blue */
    
    /* Typography - Roboto Font Family */
    --font-primary: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    --font-heading: 'Roboto Condensed', 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: 'Roboto Condensed', 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-gaming: 'Roboto Condensed', 'Roboto', sans-serif;
    
    /* Spacing - EA.com exact measurements */
    --spacing-xs: 0.25rem;    /* 4px */
    --spacing-sm: 0.5rem;     /* 8px */
    --spacing-md: 1rem;       /* 16px */
    --spacing-lg: 1.5rem;     /* 24px */
    --spacing-xl: 2rem;       /* 32px */
    --spacing-xxl: 3rem;      /* 48px */
    --spacing-xxxl: 4rem;     /* 64px */
    
    /* Border Radius */
    --border-radius: 4px;
    --border-radius-lg: 8px;
    --border-radius-xl: 12px;
    
    /* Transitions */
    --transition: all 0.15s ease-in-out;
    --transition-fast: all 0.1s ease-in-out;
    --transition-slow: all 0.3s ease-in-out;
    
    /* Shadows - EA.com style */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
}

/* ============================================
   GLOBAL STYLES - EA.COM EXACT
============================================ */

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

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--ea-gray-dark);
    background-color: var(--ea-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 70px; /* Fixed header için boşluk */
    cursor: auto !important; /* Normal cursor - custom cursor kaldırıldı */
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-fluid {
    width: 100%;
    padding: 0 var(--spacing-md);
}

/* Typography - EA.com exact styles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--ea-gray-dark);
    margin-bottom: var(--spacing-md);
}

h1 { font-size: 2.5rem; }      /* 40px */
h2 { font-size: 2rem; }        /* 32px */
h3 { font-size: 1.75rem; }     /* 28px */
h4 { font-size: 1.5rem; }      /* 24px */
h5 { font-size: 1.25rem; }     /* 20px */
h6 { font-size: 1rem; }        /* 16px */

p {
    margin-bottom: var(--spacing-md);
    color: var(--ea-gray-medium);
    line-height: 1.6;
}

a {
    color: var(--ea-red);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--ea-red-dark);
    text-decoration: underline;
}

/* ============================================
   BUTTONS - EA.COM EXACT STYLE
============================================ */

.btn {
    display: inline-block;
    font-family: var(--font-primary);
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    border: 2px solid transparent;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-transform: none;
    letter-spacing: normal;
    user-select: none;
}

.btn:focus,
.btn:hover {
    text-decoration: none;
}

.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(240, 85, 86, 0.25);
}

.btn-primary {
    color: var(--ea-white);
    background-color: var(--ea-red);
    border-color: var(--ea-red);
}

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

.btn-outline-primary {
    color: var(--ea-red);
    background-color: transparent;
    border-color: var(--ea-red);
}

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

.btn-secondary {
    color: var(--ea-white);
    background-color: var(--ea-gray-medium);
    border-color: var(--ea-gray-medium);
}

.btn-secondary:hover {
    color: var(--ea-white);
    background-color: var(--ea-gray-dark);
    border-color: var(--ea-gray-dark);
}

.btn-light {
    color: var(--ea-gray-dark);
    background-color: var(--ea-gray-light);
    border-color: var(--ea-gray-light);
}

.btn-light:hover {
    color: var(--ea-gray-dark);
    background-color: var(--ea-gray-border);
    border-color: var(--ea-gray-border);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ============================================
   ENHANCED HEADER STYLES - EA.com Professional
   ============================================ */

.ea-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    background: #ffffff !important; /* Sabit beyaz - JavaScript değiştiremez */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    /* Scroll efektleri tamamen kaldırıldı */
}

/* Mouse cursor efektleri kaldırıldı */

.ea-navbar {
    background: transparent !important; /* Sabit şeffaf - değişmez */
    padding: 0;
    min-height: 70px; /* Biraz daha yüksek */
    display: flex;
    align-items: center;
}

.ea-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px; /* Daha geniş padding */
}

/* EA Brand Logo */
.ea-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #0066CC;
    font-weight: bold;
}

.ea-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ea-logo-circle {
    width: 42px;
    height: 42px;
    background: #0066CC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
}

.ea-brand-text {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    font-family: Arial, sans-serif;
}

.ea-brand:hover .ea-logo-circle {
    background: #0052A3;
    transform: scale(1.05);
}

.ea-brand:hover .ea-brand-text {
    color: #0066CC;
}

/* Navigation Menu */
.ea-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
}

.ea-nav-item {
    position: relative;
}

.ea-nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 0;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
}

.ea-nav-link:hover {
    color: #0066CC;
    text-decoration: none;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.ea-nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menus */
.ea-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 400px;
    z-index: 1001;
}

.ea-nav-item:hover .ea-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ea-dropdown-content {
    display: flex;
    gap: 30px;
    padding: 30px;
}

.ea-dropdown-section {
    flex: 1;
}

.ea-dropdown-section h4 {
    font-size: 12px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.ea-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.ea-dropdown-item:hover {
    color: #0066CC;
    background: rgba(0, 102, 204, 0.05);
    text-decoration: none;
    padding-left: 10px;
}

.ea-dropdown-item img {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    object-fit: cover;
}

.ea-dropdown-item div {
    display: flex;
    flex-direction: column;
}

.ea-dropdown-item strong {
    font-weight: 600;
    font-size: 14px;
}

.ea-dropdown-item small {
    font-size: 12px;
    color: #666;
}

/* Right Side Actions - Ultra Sade Design */
.ea-nav-actions {
    display: flex;
    align-items: center;
    gap: 8px; /* Daha da compact */
}

/* Ultra Sade Search Button */
.ea-search {
    position: relative;
}

.ea-search-toggle {
    background: transparent;
    border: none;
    color: #6c757d;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ea-search-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #495057;
}

.ea-search-toggle:active {
    background: rgba(0, 0, 0, 0.1);
}

.ea-search-form {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-3px);
    transition: all 0.15s ease;
    margin-top: 2px;
    overflow: hidden;
    border: 1px solid #f1f3f4;
}

.ea-search-form.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ea-search-form::before {
    content: '';
    position: absolute;
    top: -3px;
    right: 10px;
    width: 6px;
    height: 6px;
    background: white;
    transform: rotate(45deg);
    border-left: 1px solid #f1f3f4;
    border-top: 1px solid #f1f3f4;
}

.ea-search-input {
    flex: 1;
    border: none;
    padding: 10px 14px;
    font-size: 14px;
    outline: none;
    background: transparent;
    color: #333;
    font-family: inherit;
}

.ea-search-input::placeholder {
    color: #9aa0a6;
    font-size: 14px;
}

.ea-search-submit {
    background: transparent;
    border: none;
    color: #5f6368;
    padding: 10px 12px;
    cursor: pointer;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ea-search-submit:hover {
    background: rgba(0, 0, 0, 0.04);
    color: #202124;
}

.ea-search-submit i {
    font-size: 16px;
}

/* Ultra Sade Help Button */
.ea-help-button {
    background: transparent;
    border: none;
    color: #6c757d;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.ea-help-button:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #495057;
    text-decoration: none;
}

.ea-help-button:active {
    background: rgba(0, 0, 0, 0.1);
}

/* Ultra Sade Account Button */
.ea-account-dropdown {
    position: relative;
}

.ea-account-button {
    background: transparent;
    border: none;
    color: #6c757d;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ea-account-button:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #495057;
}

.ea-account-button:active {
    background: rgba(0, 0, 0, 0.1);
}

.ea-account-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.2s ease;
    margin-top: 4px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.ea-account-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ea-account-menu::before {
    content: '';
    position: absolute;
    top: -4px;
    right: 12px;
    width: 8px;
    height: 8px;
    background: white;
    transform: rotate(45deg);
    border-left: 1px solid #e9ecef;
    border-top: 1px solid #e9ecef;
}

.ea-account-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    text-decoration: none;
    color: #495057;
    transition: all 0.2s ease;
    font-weight: 400;
    font-size: 14px;
}

.ea-account-item:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #343a40;
    text-decoration: none;
}

.ea-account-item i {
    font-size: 14px;
    width: 14px;
    text-align: center;
    opacity: 0.6;
}

.ea-account-divider {
    height: 1px;
    background: #f8f9fa;
    margin: 2px 0;
}

/* Ultra Sade Search Results */
.ea-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.1);
    max-height: 200px;
    overflow-y: auto;
    display: none;
    border: 1px solid #f1f3f4;
    border-top: none;
}

.ea-search-result-item {
    padding: 6px 14px;
    cursor: pointer;
    transition: all 0.1s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #202124;
}

.ea-search-result-item:hover {
    background: rgba(0, 0, 0, 0.04);
}

.ea-search-result-item:last-child {
    border-radius: 0 0 6px 6px;
}

.ea-search-result-icon {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: #5f6368;
    flex-shrink: 0;
}

/* Mobile Menu */
.ea-navbar-toggler {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 12px;
    cursor: pointer;
    border-radius: 10px;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.ea-navbar-toggler:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.ea-navbar-toggler-icon {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    position: relative;
    transition: all 0.3s ease;
}

.ea-navbar-toggler-icon::before,
.ea-navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: white;
    transition: all 0.3s ease;
}

.ea-navbar-toggler-icon::before {
    top: -8px;
}

.ea-navbar-toggler-icon::after {
    bottom: -8px;
}

.ea-mobile-menu {
    background: white !important; /* Sabit beyaz */
    border-top: 1px solid #eee;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ea-mobile-menu.show {
    max-height: 100vh;
}

.ea-mobile-search {
    display: flex;
    padding: 20px;
    gap: 10px;
}

.ea-mobile-search-input {
    flex: 1;
    padding: 15px;
    border: 2px solid #667eea;
    border-radius: 12px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.ea-mobile-search-input:focus {
    border-color: #5a67d8;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.ea-mobile-search-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.ea-mobile-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ea-mobile-nav-item {
    border-bottom: 1px solid #eee;
}

.ea-mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ea-mobile-nav-link:hover {
    background: rgba(102, 126, 234, 0.05);
    color: #667eea;
    text-decoration: none;
}

.ea-mobile-actions {
    padding: 20px;
    display: flex;
    gap: 10px;
}

/* ============================================
   ENHANCED FOOTER STYLES - EA.com Professional
   ============================================ */

.ea-footer {
    background: #1a1a1a;
    color: #ffffff;
    margin-top: 60px;
}

.ea-footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding: 60px 0;
}

/* Footer Brand Section */
.ea-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ea-footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ea-logo-circle-footer {
    width: 50px;
    height: 50px;
    background: #0066CC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
    font-family: Arial, sans-serif;
}

.ea-brand-text-footer {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

.ea-footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 20px;
}

.ea-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ea-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #cccccc;
}

.ea-contact-item i {
    width: 16px;
    color: #0066CC;
}

/* Social Media */
.ea-social-media h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.ea-social-links {
    display: flex;
    gap: 15px;
}

.ea-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ea-social-link:hover {
    background: #0066CC;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Footer Navigation */
.ea-footer-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

.ea-footer-column {
    display: flex;
    flex-direction: column;
}

.ea-footer-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.ea-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ea-footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.ea-footer-links a:hover {
    color: #0066CC;
    text-decoration: none;
    padding-left: 5px;
}

/* Newsletter Section */
.ea-newsletter-section {
    background: rgba(0, 102, 204, 0.1);
    border-radius: 12px;
    padding: 40px;
    margin: 40px 0;
}

.ea-newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.ea-newsletter-text {
    flex: 1;
}

.ea-newsletter-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.ea-newsletter-description {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.5;
}

.ea-newsletter-form {
    display: flex;
    gap: 15px;
    flex: 1;
    max-width: 400px;
}

.ea-newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ea-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.ea-newsletter-button {
    background: #0066CC;
    border: none;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.ea-newsletter-button:hover {
    background: #0052A3;
    transform: translateX(2px);
}

.ea-newsletter-button.success {
    background: #28a745;
}

/* Footer Bottom */
.ea-footer-bottom {
    background: #111111;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

.ea-footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.ea-footer-copyright p {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 10px;
}

.ea-footer-legal-links {
    display: flex;
    gap: 20px;
}

.ea-footer-legal-links a {
    font-size: 12px;
    color: #999999;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ea-footer-legal-links a:hover {
    color: #0066CC;
}

.ea-footer-ratings {
    display: flex;
    gap: 15px;
    align-items: center;
}

.ea-rating-logo {
    height: 30px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.ea-rating-logo:hover {
    opacity: 1;
}

.ea-footer-fine-print {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ea-footer-fine-print p {
    font-size: 12px;
    color: #999999;
    line-height: 1.5;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .ea-footer-nav {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .ea-dropdown-menu {
        min-width: 300px;
    }
}

@media (max-width: 992px) {
    .ea-footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ea-footer-nav {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ea-newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .ea-dropdown-content {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .ea-footer-nav {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ea-newsletter-form {
        flex-direction: column;
    }
    
    .ea-footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .ea-footer-legal-links {
        justify-content: center;
    }
    
    .ea-nav {
        gap: 20px;
    }
    
    .ea-brand-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .ea-newsletter-section {
        padding: 30px 20px;
    }
    
    .ea-footer-main {
        padding: 40px 0;
    }
    
    .ea-social-links {
        justify-content: center;
    }
}

/* ============================================
   HERO SECTION - ULTRA MODERN EA STYLE
============================================ */

.ea-hero {
    background: #ffffff;
    padding: 6rem 0 4rem;
    overflow: hidden;
}

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

.ea-hero-main {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.ea-hero-content {
    padding-top: 2rem;
}

.ea-hero-aside {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}

/* Hero Title & Content */
.ea-hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0;
    color: #1a1a1a;
    font-family: var(--font-heading);
}

.ea-hero-title .highlight {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.ea-hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #6b7280;
    font-weight: 400;
    max-width: 400px;
}

.ea-hero-visuals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 4rem 0;
}

.ea-hero-image-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.ea-hero-image-card:hover {
    transform: translateY(-5px);
}

.ea-hero-image-card.large {
    aspect-ratio: 16/10;
}

.ea-hero-image-card.small {
    aspect-ratio: 1;
}

.ea-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ea-trusted-section {
    padding: 2rem 0;
    border-top: 1px solid #e5e7eb;
}

.ea-trusted-text {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 500;
}

.ea-trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.ea-trusted-logo {
    height: 28px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    filter: grayscale(1);
}

.ea-trusted-logo:hover {
    opacity: 1;
    filter: grayscale(0);
}

/* Hero Action Button */
.ea-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #3b82f6;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}

.ea-hero-cta:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    color: white;
    text-decoration: none;
}

/* Clean, modern hero design complete */

/* Responsive Design */
@media (max-width: 1200px) {
    .ea-hero-container {
        padding: 0 1.5rem;
    }
    
    .ea-hero-main {
        gap: 3rem;
    }
    
    .ea-hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 968px) {
    .ea-hero-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .ea-hero-aside {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .ea-hero-title {
        font-size: 3rem;
    }
    
    .ea-hero-subtitle {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .ea-hero {
        padding: 4rem 0 3rem;
    }
    
    .ea-hero-container {
        padding: 0 1rem;
    }
    
    .ea-hero-main {
        gap: 2rem;
    }
    
    .ea-hero-title {
        font-size: 2.5rem;
    }
    
    .ea-hero-subtitle {
        font-size: 1rem;
    }
    
    .ea-hero-visuals {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 3rem 0;
    }
    
    .ea-trusted-logos {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .ea-hero-title {
        font-size: 2rem;
    }
    
    .ea-hero-aside {
        padding: 1.5rem;
    }
    
    .ea-trusted-logos {
        gap: 1.5rem;
    }
    
    .ea-trusted-logo {
        height: 24px;
    }
}

/* ============================================
   SECTIONS - EA.COM LAYOUT
============================================ */

.ea-section {
    padding: 6rem 0;
}

.ea-section-light {
    background: #f8f9fa;
}

.ea-section-gray {
    background: #e9ecef;
}

.ea-section-dark {
    background-color: var(--ea-gray-dark);
    color: var(--ea-white);
}

.ea-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.ea-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.ea-section-subtitle {
    font-size: 1.125rem;
    color: var(--ea-gray-medium);
    line-height: 1.6;
    margin-bottom: 0;
}

.ea-section-dark .ea-section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   GRID SYSTEM - EA.COM STYLE
============================================ */

.ea-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -var(--spacing-md);
}

.ea-col {
    flex: 1;
    padding: 0 var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.ea-col-12 { flex: 0 0 100%; max-width: 100%; }
.ea-col-6 { flex: 0 0 50%; max-width: 50%; }
.ea-col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.ea-col-3 { flex: 0 0 25%; max-width: 25%; }

.ea-grid {
    display: grid;
    gap: var(--spacing-xl);
}

.ea-grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.ea-grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.ea-grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

/* ============================================
   CARDS - EA.COM EXACT STYLE
============================================ */

.ea-card {
    background-color: var(--ea-white);
    border: 1px solid var(--ea-gray-border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition-slow);
    position: relative;
    height: 100%;
}

.ea-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--ea-red);
}

.ea-card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
    background-color: var(--ea-gray-light);
}

.ea-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.ea-card:hover .ea-card-image img {
    transform: scale(1.02);
}

.ea-card-body {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ea-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--ea-gray-dark);
    line-height: 1.3;
}

.ea-card-text {
    color: var(--ea-gray-medium);
    line-height: 1.5;
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.ea-card-footer {
    padding: var(--spacing-md) var(--spacing-lg);
    background-color: var(--ea-gray-light);
    border-top: 1px solid var(--ea-gray-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ea-card-meta {
    font-size: 0.875rem;
    color: var(--ea-gray-medium);
}

.ea-card-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--ea-white);
    background-color: var(--ea-red);
    border-radius: var(--border-radius);
    letter-spacing: 0.5px;
}

/* Featured Games Grid */
.ea-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ea-game-card {
    position: relative;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ea-game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.ea-game-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ea-game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ea-game-card:hover .ea-game-image {
    transform: scale(1.05);
}

.ea-game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.ea-game-card:hover .ea-game-overlay {
    transform: translateY(0);
}

.ea-game-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.ea-game-link:hover {
    color: #e55a2b;
}

/* ============================================
   NEWS & UPDATES SECTION
============================================ */

.ea-updates-filter {
    margin-bottom: 3rem;
}

.ea-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.ea-filter-tab {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #666;
}

.ea-filter-tab.active,
.ea-filter-tab:hover {
    background: #ff6b35;
    color: white;
    border-color: #ff6b35;
}

.ea-news-link:hover {
    color: var(--ea-red-dark);
    text-decoration: underline;
}

/* ============================================
   EA PLAY SECTION
============================================ */

.ea-play-section {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.ea-play-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="play-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23play-pattern)"/></svg>');
}

.ea-play-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.ea-play-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--ea-white);
}

.ea-play-subtitle {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
}

.ea-play-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.ea-play-feature {
    text-align: center;
}

.ea-play-feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    font-size: 1.5rem;
}

.ea-play-feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--ea-white);
}

.ea-play-feature-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* ============================================
   UTILITIES
============================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-muted { color: var(--ea-gray-medium); }
.text-primary { color: var(--ea-red); }
.text-white { color: var(--ea-white); }

.bg-light { background-color: var(--ea-gray-light); }
.bg-white { background-color: var(--ea-white); }
.bg-dark { background-color: var(--ea-gray-dark); }
.bg-primary { background-color: var(--ea-red); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

/* ============================================
   ANIMATIONS & TRANSITIONS
============================================ */

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out;
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* ============================================
   EA LOGO & BRAND SPECIFIC STYLES
============================================ */

.ea-logo-circle {
    width: 32px;
    height: 32px;
    background-color: var(--ea-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--spacing-sm);
}

.ea-logo-circle span {
    color: var(--ea-white);
    font-weight: 900;
    font-size: 0.875rem;
    letter-spacing: -0.5px;
}

.ea-brand-text {
    font-weight: 600;
    font-size: 1rem;
    color: var(--ea-gray-dark);
}

.ea-nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--ea-gray-dark);
    margin-left: var(--spacing-md);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.ea-nav-icon:hover {
    background-color: var(--ea-gray-light);
    color: var(--ea-red);
    text-decoration: none;
}

/* Mobile Menu Styles */
.ea-mobile-menu {
    display: none;
    background-color: var(--ea-white);
    border-top: 1px solid var(--ea-gray-border);
    padding: var(--spacing-lg) 0;
}

.ea-mobile-menu.show {
    display: block;
}

.ea-mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-lg) 0;
}

.ea-mobile-nav li {
    margin-bottom: var(--spacing-sm);
}

.ea-mobile-nav .ea-nav-link {
    display: block;
    padding: var(--spacing-sm) 0;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--ea-gray-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--ea-gray-border);
}

.ea-mobile-actions {
    display: flex;
    gap: var(--spacing-md);
}

/* ============================================
   EA PLAY SECTION ENHANCEMENTS
============================================ */

.btn-white {
    background-color: var(--ea-white);
    border-color: var(--ea-white);
    color: var(--ea-red);
}

.btn-white:hover {
    background-color: var(--ea-gray-light);
    border-color: var(--ea-gray-light);
    color: var(--ea-red-dark);
}

.btn-outline-white {
    background-color: transparent;
    border-color: var(--ea-white);
    color: var(--ea-white);
}

.btn-outline-white:hover {
    background-color: var(--ea-white);
    border-color: var(--ea-white);
    color: var(--ea-red);
}

.me-3 {
    margin-right: var(--spacing-md) !important;
} 