/* =============================================
   EBPlayer - Material Design Light Theme
   ============================================= */

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lato', 'Roboto', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a2e;
}

/* === CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 12px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    text-decoration: none;
    line-height: 1.4;
}

.btn .material-icons {
    font-size: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, #2a8c7a, #1a6b5a);
    color: #fff;
    border-color: #2a8c7a;
    box-shadow: 0 4px 14px rgba(42, 140, 122, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1a6b5a, #145a4a);
    border-color: #1a6b5a;
    box-shadow: 0 6px 20px rgba(42, 140, 122, 0.4);
    transform: translateY(-2px);
}

.btn-outlined {
    background: transparent;
    color: #2a8c7a;
    border-color: #2a8c7a;
}

.btn-outlined:hover {
    background: #e0f2ee;
    color: #1a6b5a;
    transform: translateY(-2px);
}

.btn-white {
    background: #fff;
    color: #1a6b5a;
    border-color: #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.btn-white:hover {
    background: #e0f2ee;
    border-color: #e0f2ee;
    transform: translateY(-2px);
}

.btn-white-outlined {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

.btn-white-outlined:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
    border-radius: 10px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
    border-radius: 14px;
}

/* === GRADIENT TEXT === */
.gradient-text {
    background: linear-gradient(135deg, #2a8c7a, #c5a44e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === SECTION HEADER === */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 18px;
    background: #e0f2ee;
    color: #1a6b5a;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================
   HEADER
   ============================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    height: 60px;
    width: auto;
}

.logo-icon {
    font-size: 32px;
    color: #2a8c7a;
}

.logo-text {
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #1a1a2e;
}

.logo-accent {
    color: #2a8c7a;
}

.nav-desktop {
    display: flex;
    gap: 32px;
}

.nav-desktop a {
    font-size: 15px;
    font-weight: 500;
    color: #555;
    position: relative;
}

.nav-desktop a:hover {
    color: #2a8c7a;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2a8c7a;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-desktop a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Header Login Button */
.header-login-btn {
    background: #f0f5f3;
    color: #1a6b5a !important;
    border: 1px solid #d0e8e2;
    padding: 8px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.header-login-btn:hover {
    background: #e0f2ee;
    transform: translateY(-1px);
}

/* Header Profile Dropdown */
.header-profile-dropdown {
    position: relative;
}
.header-profile-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1px solid #e8e8ef;
    border-radius: 50px;
    padding: 4px 12px 4px 4px;
    cursor: pointer;
    transition: all 0.2s;
}
.header-profile-text {
    font-size: 13px;
    font-weight: 500;
    color: #1a1a2e;
}
.header-profile-btn:hover {
    border-color: #2a8c7a;
    background: #f0f5f3;
}
.header-profile-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a8c7a, #1a6b5a);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}
.header-profile-arrow {
    font-size: 18px !important;
    color: #888;
    transition: transform 0.2s;
}
.header-profile-dropdown.open .header-profile-arrow {
    transform: rotate(180deg);
}
.header-profile-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 220px;
    background: #fff;
    border: 1px solid #e8e8ef;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    z-index: 1001;
    overflow: hidden;
}
.header-profile-dropdown.open .header-profile-menu {
    display: block;
}
.header-profile-info {
    padding: 14px 16px;
}
.header-profile-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
}
.header-profile-role {
    display: block;
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}
.header-profile-divider {
    height: 1px;
    background: #f0f0f5;
}
.header-profile-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 14px;
    color: #555;
    transition: all 0.15s;
}
.header-profile-menu a .material-icons {
    font-size: 18px;
    color: #999;
}
.header-profile-menu a:hover {
    background: #f0f5f3;
    color: #1a6b5a;
}
.header-profile-menu a:hover .material-icons {
    color: #2a8c7a;
}
.header-profile-logout {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 14px;
    color: #c62828;
    background: none;
    border: none;
    width: 100%;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    transition: all 0.15s;
}
.header-profile-logout .material-icons {
    font-size: 18px;
}
.header-profile-logout:hover {
    background: #fff5f5;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    color: #333;
}

.mobile-menu-btn:hover {
    background: #f5f5f5;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 2000;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    color: #333;
}

.mobile-nav {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav a {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.mobile-nav a:hover {
    background: #e0f2ee;
    color: #1a6b5a;
}

.mobile-nav hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 8px 0;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================
   HERO
   ============================ */
.hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    background: #fff url('../../assets/img/shape-bg.png') no-repeat bottom center;
    background-size: cover;
}

.hero-tv-img {
    width: 100%;
    max-width: 700px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    animation: tvFloat 4s ease-in-out infinite;
}

@keyframes tvFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #2a8c7a, transparent 70%);
    top: -200px;
    right: -200px;
    animation: heroFloat1 8s ease-in-out infinite;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #c5a44e, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: heroFloat2 10s ease-in-out infinite;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #b2ddd2, transparent 70%);
    top: 40%;
    left: 40%;
    animation: heroFloat3 6s ease-in-out infinite;
}

@keyframes heroFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 20px) scale(1.05); }
}

@keyframes heroFloat2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -30px); }
}

@keyframes heroFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-15px, -15px) scale(1.1); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #b2ddd2;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: #1a6b5a;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.1);
}

.hero-badge .material-icons {
    font-size: 16px;
    color: #2a8c7a;
}

.hero h1 {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 28px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat strong {
    font-size: 28px;
    font-weight: 900;
    color: #1a1a2e;
    font-family: 'Lato', sans-serif;
}

.hero-stat span {
    font-size: 13px;
    color: #888;
    font-weight: 500;
}

/* Hero TV Visual */
.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-tv {
    width: 420px;
    position: relative;
}

.tv-screen {
    background: #1a1a2e;
    border-radius: 16px;
    padding: 16px;
    aspect-ratio: 16/10;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 2px #333;
    overflow: hidden;
}

.tv-ui {
    display: flex;
    height: 100%;
    gap: 8px;
}

.tv-sidebar {
    width: 40px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 4px;
}

.tv-menu-item {
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.tv-menu-item.active {
    background: #2a8c7a;
    box-shadow: 0 0 8px rgba(33, 150, 243, 0.5);
}

.tv-content {
    flex: 1;
}

.tv-channel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    height: 100%;
}

.tv-channel {
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.1));
    animation: tvPulse 3s ease-in-out infinite;
}

.tv-channel:nth-child(1) { animation-delay: 0s; background: linear-gradient(135deg, #1a6b5a, #1a6b5a); }
.tv-channel:nth-child(2) { animation-delay: 0.5s; background: linear-gradient(135deg, #C62828, #E53935); }
.tv-channel:nth-child(3) { animation-delay: 1s; background: linear-gradient(135deg, #2E7D32, #43A047); }
.tv-channel:nth-child(4) { animation-delay: 1.5s; background: linear-gradient(135deg, #E65100, #F57C00); }
.tv-channel:nth-child(5) { animation-delay: 2s; background: linear-gradient(135deg, #7B1FA2, #9C27B0); }
.tv-channel:nth-child(6) { animation-delay: 2.5s; background: linear-gradient(135deg, #00838F, #00ACC1); }

@keyframes tvPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.tv-stand {
    width: 120px;
    height: 24px;
    background: linear-gradient(180deg, #555, #333);
    margin: 0 auto;
    border-radius: 0 0 12px 12px;
    position: relative;
}

.tv-stand::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 8px;
    background: #333;
    border-radius: 4px;
}

/* ============================
   FEATURES
   ============================ */
.features {
    padding: 100px 0;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    padding: 36px 28px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon .material-icons {
    font-size: 32px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* ============================
   PLATFORMS
   ============================ */
.platforms {
    padding: 100px 0;
    background: #fff;
}

/* Store Badges Grid */
.store-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 32px;
}

.store-badge {
    display: block;
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.store-badge img {
    height: 56px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

.store-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.download-extras {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 8px;
}

/* ============================
   HOW IT WORKS
   ============================ */
.how-it-works {
    padding: 100px 0;
    background: #fff;
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step-card {
    text-align: center;
    padding: 32px 24px;
    position: relative;
    flex: 1;
    max-width: 240px;
}

.step-number {
    position: absolute;
    top: 12px;
    right: 24px;
    font-size: 48px;
    font-weight: 900;
    color: #e0f2ee;
    font-family: 'Lato', sans-serif;
    line-height: 1;
}

.step-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, #2a8c7a, #145a4a);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(33, 150, 243, 0.3);
}

.step-icon .material-icons {
    font-size: 32px;
    color: #fff;
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 56px;
    color: #b2ddd2;
}

.step-connector .material-icons {
    font-size: 28px;
}

/* ============================
   VIDEO GUIDES
   ============================ */
.video-guides {
    padding: 100px 0;
    background: #FAFAFA;
}

/* Video Guides - 2x2 Grid with YouTube Embeds */
.videos-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.video-card-embed {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.video-card-embed:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 20px 24px;
}

.video-info h3 {
    font-size: 17px;
    margin-bottom: 6px;
}

.video-info p {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
}

/* ============================
   FEATURES - IBO STYLE
   ============================ */
.features-ibo {
    padding: 100px 0;
    background: #fff;
}

.features-ibo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-ibo-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-left: 4px solid transparent;
    cursor: default;
}

.feature-ibo-card:hover {
    border-left-color: #2a8c7a;
    box-shadow: 0 8px 32px rgba(42, 140, 122, 0.15);
    background: linear-gradient(135deg, #f4f9f7, #fff);
}

.feature-ibo-card:hover .feature-ibo-icon {
    background: linear-gradient(135deg, #2a8c7a, #c5a44e);
}

.feature-ibo-card:hover .feature-ibo-icon .material-icons {
    color: #fff;
}

.feature-ibo-card:hover h3 {
    color: #1a6b5a;
}

.feature-ibo-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 14px;
    background: #f4f9f7;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-ibo-icon .material-icons {
    font-size: 32px;
    color: #2a8c7a;
    transition: color 0.4s ease;
}

.feature-ibo-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #1a1a2e;
    transition: color 0.3s ease;
}

.feature-ibo-card p {
    font-size: 14px;
    color: #888;
    line-height: 1.7;
}

/* ============================
   HOW TO USE - IBO STYLE
   ============================ */
.how-to-use {
    padding: 100px 0;
    background: #f4f9f7;
}

.use-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.use-step {
    background: #fff;
    border-radius: 20px;
    padding: 36px 32px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.use-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 44px rgba(42, 140, 122, 0.15);
}

.use-step-img {
    margin-bottom: 20px;
}

.use-step-img img {
    width: 120px;
    height: auto;
    transition: transform 0.4s ease;
}

.use-step:hover .use-step-img img {
    transform: scale(1.08);
}

.use-step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a8c7a, #c5a44e);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: #fff;
}

.use-step h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a1a2e;
    transition: color 0.3s ease;
}

.use-step:hover h3 {
    color: #1a6b5a;
}

.use-step p {
    font-size: 14px;
    color: #888;
    line-height: 1.7;
}

/* ============================
   FAQ
   ============================ */
.faq {
    padding: 100px 0;
    background: #fff;
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
}

.faq-image {
    text-align: center;
}

.faq-image img {
    width: 100%;
    max-width: 420px;
    height: auto;
    animation: faqFloat 5s ease-in-out infinite;
}

@keyframes faqFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.faq-list {
    max-width: 100%;
}

.faq-item {
    border: 1px solid #eee;
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #b2ddd2;
}

.faq-item.active {
    border-color: #2a8c7a;
    box-shadow: 0 4px 16px rgba(33, 150, 243, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a2e;
    text-align: left;
}

.faq-icon {
    transition: transform 0.3s ease;
    color: #888;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #2a8c7a;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* ============================
   CTA
   ============================ */
.cta {
    padding: 80px 0;
    background: #fff;
}

.cta-card {
    background: linear-gradient(135deg, #0a1a1a 0%, #0f2e2a 40%, #1a3d35 70%, #0a1a1a 100%);
    border-radius: 28px;
    padding: 90px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-deco { position: absolute; }
.cta-deco-1 { top: 10%; left: 5%; opacity: 0.08; animation: ctaFloat1 8s ease-in-out infinite; }
.cta-deco-2 { top: 60%; right: 8%; opacity: 0.06; animation: ctaFloat2 10s ease-in-out infinite; }
.cta-deco-3 { top: 20%; right: 15%; opacity: 0.1; animation: ctaFloat3 6s ease-in-out infinite; }
.cta-deco-4 { bottom: 20%; left: 12%; opacity: 0.07; animation: ctaFloat1 7s ease-in-out infinite reverse; }
.cta-deco-5 { top: 15%; left: 35%; opacity: 0.06; animation: ctaPulse 4s ease-in-out infinite; }

.cta-glow {
    position: absolute;
    border-radius: 50%;
}
.cta-glow-1 {
    top: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(42,140,122,0.15) 0%, transparent 70%);
}
.cta-glow-2 {
    bottom: -40%;
    right: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(197,164,78,0.1) 0%, transparent 70%);
}

@keyframes ctaFloat1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}
@keyframes ctaFloat2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(-3deg); }
}
@keyframes ctaFloat3 {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
}
@keyframes ctaPulse {
    0%, 100% { opacity: 0.06; transform: scale(1); }
    50% { opacity: 0.12; transform: scale(1.1); }
}

.cta-gradient-title {
    font-size: 52px;
    font-weight: 900;
    font-family: 'Lato', sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #2a8c7a 50%, #c5a44e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-card p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.btn-cta-gradient {
    background: linear-gradient(135deg, #c5a44e, #2a8c7a, #c5a44e);
    background-size: 200% auto;
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(197,164,78,0.3);
}

.btn-cta-gradient:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(197,164,78,0.4);
}

/* ============================
   DISCLAIMER
   ============================ */
.disclaimer {
    padding: 0 0 40px;
}

.disclaimer-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 24px;
    background: #FFF3E0;
    border: 1px solid #FFE0B2;
    border-radius: 14px;
    font-size: 13px;
    color: #E65100;
    line-height: 1.6;
}

.disclaimer-card .material-icons {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.disclaimer-card p {
    color: #795548;
}

/* ============================
   FOOTER
   ============================ */
.footer {
    background: #1a1a2e;
    padding: 60px 0 0;
    color: #aaa;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-logo-img {
    height: 50px;
    filter: brightness(1.5);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
}

.footer-social a:hover {
    background: #c5a44e;
    color: #fff;
}

.footer-links h4 {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    padding: 6px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links a:hover {
    color: #2a8c7a;
}

.footer-links p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    padding: 4px 0;
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

/* ============================
   PAGE SECTION (forms pages)
   ============================ */
.page-section {
    padding: 120px 0 80px;
    min-height: 80vh;
    background: #f8faf9;
}

.page-card {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.page-card-wide {
    max-width: 820px;
}

.page-card-header {
    text-align: center;
    margin-bottom: 32px;
}

.page-card-icon {
    font-size: 48px;
    color: #2a8c7a;
    margin-bottom: 12px;
    display: block;
}

.page-card-header h1 {
    font-size: 28px;
    margin-bottom: 8px;
}

.page-card-header p {
    font-size: 15px;
    color: #888;
}

/* Form Modern */
.form-modern .form-group {
    margin-bottom: 20px;
}

.form-modern label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    margin-bottom: 8px;
}

.form-modern label .material-icons {
    font-size: 18px;
    color: #2a8c7a;
}

.form-modern input,
.form-modern select,
.form-modern textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e8e8ef;
    border-radius: 12px;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #333;
    background: #fff;
    transition: all 0.3s ease;
    outline: none;
}

.form-modern input:focus,
.form-modern select:focus,
.form-modern textarea:focus {
    border-color: #2a8c7a;
    box-shadow: 0 0 0 3px rgba(42, 140, 122, 0.1);
}

.form-modern input::placeholder,
.form-modern textarea::placeholder {
    color: #bbb;
}

.form-modern textarea {
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-danger {
    background: linear-gradient(135deg, #e53935, #c62828);
    color: #fff;
    border-color: #e53935;
    box-shadow: 0 4px 14px rgba(229, 57, 53, 0.3);
}

.btn-danger:hover {
    background: linear-gradient(135deg, #c62828, #b71c1c);
    box-shadow: 0 6px 20px rgba(229, 57, 53, 0.4);
    transform: translateY(-2px);
}

/* Results */
.result-area {
    margin-top: 28px;
}

.result-table {
    border: 1px solid #e8e8ef;
    border-radius: 14px;
    overflow: hidden;
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid #f0f0f5;
}

.result-row:last-child {
    border-bottom: none;
}

.result-row span {
    font-size: 14px;
    color: #888;
}

.result-row strong {
    font-size: 14px;
    color: #1a1a2e;
}

/* Badges */
.badge {
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

.badge-success {
    background: #e8f5e9;
    color: #2e7d32;
}

.badge-warning {
    background: #fff3e0;
    color: #e65100;
}

.badge-error {
    background: #fce4ec;
    color: #c62828;
}

/* Alerts */
.alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
}

.alert .material-icons {
    font-size: 20px;
}

.alert-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.alert-error {
    background: #fce4ec;
    color: #c62828;
    border: 1px solid #f8bbd0;
}

.alert-warning {
    background: #fff3e0;
    color: #e65100;
    border: 1px solid #ffe0b2;
}

/* Spin animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.spin { animation: spin 1s linear infinite; }

/* Contact Info */
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #f0f0f5;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
    background: #f8faf9;
}

.contact-info-item .material-icons {
    font-size: 24px;
    color: #2a8c7a;
}

.contact-info-item strong {
    display: block;
    font-size: 14px;
    color: #1a1a2e;
    margin-bottom: 2px;
}

.contact-info-item p {
    font-size: 13px;
    color: #888;
}

/* Legal Content */
.legal-content {
    padding-top: 8px;
}

.legal-content h3 {
    font-size: 17px;
    color: #1a1a2e;
    margin: 28px 0 10px;
}

.legal-content h3:first-child {
    margin-top: 0;
}

.legal-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/* Toggle Switch */
.toggle-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    padding: 8px 0;
}

.toggle-label input[type="checkbox"] {
    display: none;
}

.toggle-switch {
    width: 44px;
    height: 24px;
    background: #ddd;
    border-radius: 12px;
    position: relative;
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.toggle-label input:checked + .toggle-switch {
    background: #2a8c7a;
}

.toggle-label input:checked + .toggle-switch::after {
    transform: translateX(20px);
}

/* ============================
   SCROLL ANIMATIONS
   ============================ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
    .hero h1 { font-size: 42px; }
    .section-header h2 { font-size: 34px; }
    .features-ibo-grid { grid-template-columns: 1fr; }
    .platforms-grid { grid-template-columns: repeat(2, 1fr); }
    .videos-grid-2x2 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .nav-desktop { display: none; }
    .header-actions .btn { display: none; }
    .mobile-menu-btn { display: block; }

    .hero { padding: 120px 0 60px; }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero h1 { font-size: 36px; }
    .hero-subtitle { margin: 0 auto 32px; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { order: -1; }
    .hero-tv { width: 300px; }

    .features-ibo-grid { grid-template-columns: 1fr; }
    .use-steps { grid-template-columns: repeat(2, 1fr); }
    .faq-layout { grid-template-columns: 1fr; }
    .faq-image { margin-bottom: 20px; }
    .faq-image img { max-width: 280px; }
    .platforms-grid { grid-template-columns: 1fr 1fr; }
    .videos-grid-2x2 { grid-template-columns: 1fr; }
    .download-extras { flex-direction: column; align-items: center; }
    .store-badge img { height: 48px; }

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }
    .step-connector {
        padding: 0;
        transform: rotate(90deg);
    }

    .section-header h2 { font-size: 28px; }
    .cta-card { padding: 48px 28px; }
    .cta-card h2 { font-size: 28px; }
    .cta-buttons { flex-direction: column; align-items: center; }

    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 28px; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .hero-buttons { flex-direction: column; }
    .platforms-grid { grid-template-columns: 1fr; }
    .btn-lg { padding: 14px 28px; }
}

/* === PAGE HEADER BANNER === */
.page-header {
    position: relative;
    padding: 120px 0 60px;
    overflow: hidden;
    text-align: center;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/tv-banner.jpg') center/cover no-repeat;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgb(46 90 104 / 34%) 0%, rgb(21 26 28) 40%, rgb(41 92 75 / 64%) 70%, rgb(52 136 143 / 47%) 100%);
    z-index: 1;
}

.page-header::after {
    display: none;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-family: 'Lato', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-header p {
    color: rgba(255,255,255,0.85);
    font-size: 18px;
    max-width: 500px;
    margin: 0 auto;
}

.page-header-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.page-header-breadcrumb a {
    color: rgba(255,255,255,0.85);
    transition: color 0.3s;
}

.page-header-breadcrumb a:hover {
    color: #fff;
}

.page-header-breadcrumb .separator {
    font-size: 18px;
}

/* Floating decorations */
.page-header .deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.15);
}

.page-header .deco-circle-1 {
    width: 200px;
    height: 200px;
    top: -60px;
    left: -40px;
    animation: floatSlow 8s ease-in-out infinite;
}

.page-header .deco-circle-2 {
    width: 120px;
    height: 120px;
    bottom: 20px;
    right: 5%;
    animation: floatSlow 6s ease-in-out infinite reverse;
}

.page-header .deco-circle-3 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 15%;
    background: rgba(255,255,255,0.08);
    animation: floatSlow 5s ease-in-out infinite;
}

.page-header .deco-dots {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(rgba(255,255,255,0.2) 2px, transparent 2px);
    background-size: 12px 12px;
    animation: floatSlow 7s ease-in-out infinite;
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@media (max-width: 768px) {
    .page-header { padding: 100px 0 40px; }
    .page-header h1 { font-size: 28px; }
    .page-header p { font-size: 15px; }
}

/* ============================
   USER ACCOUNT PAGES (site-style)
   ============================ */
.account-section {
    padding: 60px 0 80px;
    background: #f8faf9;
    min-height: 60vh;
}

.account-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 30px;
}

/* Account Sidebar Navigation */
.account-sidebar {
    background: #fff;
    border: 1px solid #e8e8ef;
    border-radius: 14px;
    padding: 20px 0;
    height: fit-content;
    position: sticky;
    top: 90px;
}
.account-sidebar-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    padding: 8px 20px;
    font-weight: 600;
}
.account-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}
.account-nav-link:hover {
    background: #f0f5f3;
    color: #1a6b5a;
}
.account-nav-link.active {
    background: rgba(42,140,122,0.06);
    color: #2a8c7a;
    border-left-color: #2a8c7a;
}
.account-nav-link .material-icons {
    font-size: 20px;
}

/* Account Content */
.account-content {
    min-width: 0;
}
.account-card {
    background: #fff;
    border: 1px solid #e8e8ef;
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.account-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.account-card-title .material-icons {
    font-size: 22px;
    color: #2a8c7a;
}

/* Account Form */
.account-form-group {
    margin-bottom: 20px;
}
.account-form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
}
.account-form-input {
    width: 100%;
    padding: 11px 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    color: #333;
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
}
.account-form-input:focus {
    border-color: #2a8c7a;
    box-shadow: 0 0 0 3px rgba(42,140,122,0.1);
}
.account-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Device Cards */
.device-card {
    background: #fff;
    border: 1px solid #e8e8ef;
    border-radius: 14px;
    padding: 24px;
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.device-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.device-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.device-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #e0f2ee;
    display: flex;
    align-items: center;
    justify-content: center;
}
.device-card-icon .material-icons {
    font-size: 22px;
    color: #2a8c7a;
}
.device-card-mac {
    font-family: monospace;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 4px;
}
.device-card-type {
    font-size: 13px;
    color: #888;
    text-transform: capitalize;
}
.device-card-stats {
    display: flex;
    gap: 20px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f5;
}
.device-card-stat {
    text-align: center;
    flex: 1;
}
.device-card-stat-value {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
}
.device-card-stat-label {
    font-size: 11px;
    color: #999;
    margin-top: 2px;
}

/* License Cards */
.license-card {
    background: #fff;
    border: 1px solid #e8e8ef;
    border-radius: 14px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px;
    transition: all 0.2s;
}
.license-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}
.license-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.license-card-icon.active { background: #e8f5e9; color: #2e7d32; }
.license-card-icon.unused { background: #e0f2ee; color: #1a6b5a; }
.license-card-icon.expired { background: #f5f5f5; color: #9e9e9e; }
.license-card-icon.trial { background: #fff3e0; color: #e65100; }
.license-card-icon .material-icons { font-size: 24px; }
.license-card-info { flex: 1; min-width: 0; }
.license-card-key {
    font-family: monospace;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    letter-spacing: 0.5px;
}
.license-card-meta {
    font-size: 13px;
    color: #888;
    margin-top: 4px;
}
.license-card-status {
    text-align: right;
    flex-shrink: 0;
}

/* Badges (reused) */
.badge-sm {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}
.badge-sm.active { background: #e8f5e9; color: #2e7d32; }
.badge-sm.unused { background: #e0f2ee; color: #1a6b5a; }
.badge-sm.expired { background: #f5f5f5; color: #9e9e9e; }
.badge-sm.trial { background: #fff3e0; color: #e65100; }
.badge-sm.revoked { background: #fce4ec; color: #c62828; }

/* Account stat cards */
.account-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}
.account-stat-card {
    background: #fff;
    border: 1px solid #e8e8ef;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
}
.account-stat-icon {
    font-size: 28px;
    color: #2a8c7a;
    margin-bottom: 8px;
}
.account-stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
}
.account-stat-label {
    font-size: 13px;
    color: #999;
    margin-top: 4px;
}

/* Empty state for account pages */
.account-empty {
    text-align: center;
    padding: 60px 20px;
    color: #bbb;
}
.account-empty .material-icons {
    font-size: 48px;
    margin-bottom: 12px;
    display: block;
}
.account-empty p {
    font-size: 15px;
    margin-bottom: 16px;
}

/* Alert for account pages */
.account-alert {
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}
.account-alert-success { background: #e8f5e9; border: 1px solid #c8e6c9; color: #2e7d32; }
.account-alert-error { background: #fce4ec; border: 1px solid #f8bbd0; color: #c62828; }

/* Device grid */
.devices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .account-grid { grid-template-columns: 1fr; }
    .account-sidebar { position: static; }
    .account-form-row { grid-template-columns: 1fr; }
    .devices-grid { grid-template-columns: 1fr; }
    .account-stats { grid-template-columns: 1fr; }
    .header-login-btn span.material-icons { display: none; }
    .header-profile-text { display: none; }
    .header-profile-dropdown .btn-outlined,
    .header-profile-dropdown .btn-primary { display: none; }
}
