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

body {
    font-family: 'Inter', sans-serif;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 0.95rem;
}

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --nav-bg: #000000;
    --nav-text: #ffffff;
    --card-bg: #1a1a1a;
    --card-border: #2a2a2a;
    --footer-bg: #000000;
    --footer-text: #cccccc;
    --skill-tag-bg: #2a2a2a;
    --profile-card-bg: #1a1a1a;
    --placeholder-bg: #2a2a2a;
    --philosophy-bg: #111111;
    --hero-bg: #000000;
    --hero-text: #ffffff;
    --hero-text-secondary: rgba(255, 255, 255, 0.85);
    --hero-image-border: #b000ff;
    --floating-icon-color: #b000ff;
    --neon-purple: #b000ff;
    --neon-purple-glow: 0 0 3px #b000ff;
    --neon-border-hover: 0 0 5px #b000ff;
    --accent-green-light: #b000ff;
    --ps-hub-bg: linear-gradient(135deg, #0a0a2a, #001a3d);
    --ps-card-bg: rgba(0, 20, 60, 0.8);
    --ps-card-border: rgba(0, 100, 255, 0.3);
    --blue-grad: linear-gradient(135deg, #003791, #0066ff, #00aaff);
    --dark-grad: linear-gradient(135deg, #0a0a2a, #1a1a4a, #2a2a6a);
    --cyan-grad: linear-gradient(135deg, #004466, #0088aa, #00ccff);
    --light-grad: linear-gradient(135deg, #001a3d, #0044aa, #0088ff);
}

body.light-theme {
    --bg-primary: #f5f5f5;
    --bg-secondary: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --nav-bg: #ffffff;
    --nav-text: #1a1a1a;
    --card-bg: #ffffff;
    --card-border: #e0e0e0;
    --footer-bg: #f8f8f8;
    --footer-text: #4a4a4a;
    --skill-tag-bg: #f0f0f0;
    --profile-card-bg: #fafafa;
    --placeholder-bg: #f5f5f5;
    --philosophy-bg: #fafafa;
    --hero-bg: #f0f0f5;
    --hero-text: #1a1a1a;
    --hero-text-secondary: #4a4a4a;
    --hero-image-border: #b000ff;
    --floating-icon-color: #b000ff;
    --ps-hub-bg: linear-gradient(135deg, #e8f0ff, #d0e0ff);
    --ps-card-bg: rgba(255, 255, 255, 0.95);
    --ps-card-border: rgba(0, 100, 255, 0.2);
    --blue-grad: linear-gradient(135deg, #0066ff, #00aaff, #00ccff);
    --dark-grad: linear-gradient(135deg, #2a2a6a, #3a3a8a, #4a4aaa);
    --cyan-grad: linear-gradient(135deg, #0088aa, #00aacc, #00eebb);
    --light-grad: linear-gradient(135deg, #0044aa, #0066ff, #0088ff);
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

html {
    font-size: 17px;
}

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

.header {
    background: var(--nav-bg);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
    border-bottom: 1px solid rgba(176, 0, 255, 0.2);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-fallback {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--neon-purple);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: var(--nav-text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover {
    color: var(--neon-purple);
    border-bottom-color: var(--neon-purple);
}

.theme-toggle {
    background: transparent;
    border: 1px solid var(--neon-purple);
    color: var(--nav-text);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.45rem 1rem;
    border-radius: 40px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.theme-toggle:hover {
    background: var(--neon-purple);
    color: #000;
}

.hero {
    position: relative;
    background: var(--hero-bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: background 0.3s ease;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-bg);
    z-index: 0;
}

.floating-icon {
    position: absolute;
    font-size: 1.8rem;
    color: var(--floating-icon-color);
    z-index: 10;
    pointer-events: none;
    opacity: 0.35;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-icon:hover {
    opacity: 0.7;
    transform: scale(1.05);
}

.icon-1 { top: 5%; left: 3%; animation: floatIcon1 24s ease-in-out infinite; }
.icon-2 { top: 12%; right: 5%; animation: floatIcon2 28s ease-in-out infinite; }
.icon-3 { bottom: 8%; left: 6%; animation: floatIcon3 22s ease-in-out infinite; }
.icon-4 { bottom: 15%; right: 8%; animation: floatIcon4 30s ease-in-out infinite; }
.icon-5 { top: 25%; left: 10%; animation: floatIcon1 26s ease-in-out infinite; }
.icon-6 { top: 40%; right: 3%; animation: floatIcon2 25s ease-in-out infinite; }
.icon-7 { bottom: 30%; left: 12%; animation: floatIcon3 27s ease-in-out infinite; }
.icon-8 { top: 65%; right: 12%; animation: floatIcon4 29s ease-in-out infinite; }
.icon-9 { top: 50%; left: 2%; animation: floatIcon1 31s ease-in-out infinite; }
.icon-10 { bottom: 45%; right: 2%; animation: floatIcon2 26s ease-in-out infinite; }
.icon-11 { top: 75%; left: 18%; animation: floatIcon3 32s ease-in-out infinite; }
.icon-12 { top: 18%; left: 22%; animation: floatIcon4 27s ease-in-out infinite; }
.icon-13 { bottom: 60%; right: 20%; animation: floatIcon1 29s ease-in-out infinite; }
.icon-14 { top: 85%; right: 25%; animation: floatIcon2 33s ease-in-out infinite; }
.icon-15 { bottom: 10%; left: 28%; animation: floatIcon3 28s ease-in-out infinite; }
.icon-16 { top: 30%; right: 28%; animation: floatIcon4 30s ease-in-out infinite; }

@keyframes floatIcon1 {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-25px) translateX(12px); }
    66% { transform: translateY(20px) translateX(-10px); }
}
@keyframes floatIcon2 {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(22px) translateX(-15px); }
    66% { transform: translateY(-18px) translateX(12px); }
}
@keyframes floatIcon3 {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-20px) translateX(-12px); }
    66% { transform: translateY(22px) translateX(15px); }
}
@keyframes floatIcon4 {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(25px) translateX(10px); }
    66% { transform: translateY(-20px) translateX(-12px); }
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-image-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-full-image {
    width: 45%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    border: 3px solid var(--hero-image-border);
    transition: all 0.3s ease;
}

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

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--hero-text);
    margin-bottom: 0.5rem;
}

.hero-text .tagline {
    font-size: 1.5rem;
    color: var(--neon-purple);
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-text p {
    color: var(--hero-text-secondary);
    margin-bottom: 1.8rem;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-contact {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-contact a {
    color: var(--neon-purple);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.hero-contact a:hover {
    color: var(--hero-text);
}

.whatsapp-link {
    color: #25D366 !important;
}

.whatsapp-link:hover {
    color: var(--hero-text) !important;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 3rem 0 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--neon-purple);
    border-radius: 4px;
}

.philosophy-section {
    background: var(--philosophy-bg);
    border-radius: 28px;
    padding: 2.5rem;
    margin: 2rem 0;
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
}

.philosophy-section:hover {
    border-color: var(--neon-purple);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.philosophy-card {
    text-align: center;
    padding: 1.8rem;
    background: var(--card-bg);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.philosophy-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-purple);
}

.philosophy-icon {
    font-size: 2.5rem;
    color: var(--neon-purple);
    margin-bottom: 1rem;
}

.philosophy-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--neon-purple);
    margin-bottom: 1rem;
}

.philosophy-card p {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--text-secondary);
}

.profile-section {
    background: var(--bg-secondary);
    border-radius: 28px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid var(--card-border);
    transition: all 0.3s;
}

.profile-section:hover {
    border-color: var(--neon-purple);
}

.profile-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.profile-card {
    background: var(--profile-card-bg);
    padding: 1.5rem;
    border-radius: 16px;
    border-left: 4px solid var(--neon-purple);
    transition: all 0.3s;
}

.profile-card:hover {
    transform: translateX(5px);
}

.profile-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.profile-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.experience-fullwidth {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--card-border);
}

.experience-fullwidth h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.experience-item {
    background: var(--profile-card-bg);
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.experience-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--neon-border-hover);
}

.experience-short {
    font-size: 0.7rem;
    color: var(--neon-purple);
    margin-top: 0.5rem;
    opacity: 0.8;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.skill-tag {
    background: var(--skill-tag-bg);
    padding: 0.4rem 1rem;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-primary);
    border: 1px solid var(--card-border);
    transition: all 0.2s;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.skill-tag i {
    font-size: 0.8rem;
}

.skill-tag:hover {
    background: var(--neon-purple);
    color: #000;
    transform: scale(1.02);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    margin: 2rem 0;
}

.project-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid var(--card-border);
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: var(--neon-purple);
}

.project-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.project-badge {
    background: var(--neon-purple);
    color: #000;
    padding: 0.3rem 0.9rem;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 700;
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    z-index: 2;
}

.project-info {
    padding: 1.4rem;
}

.project-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--neon-purple);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.project-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.project-description {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.45;
    margin-bottom: 1rem;
}

.project-placeholder {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--placeholder-bg);
    padding: 0.35rem 0.9rem;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-primary);
    pointer-events: none;
}

.football-tables-section {
    background: var(--bg-secondary);
    border-radius: 28px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid var(--card-border);
    transition: all 0.3s;
}

.football-tables-section:hover {
    border-color: var(--neon-purple);
}

.tables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin-top: 1.5rem;
}

.league-table-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    transition: all 0.3s;
}

.league-table-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-purple);
}

.table-header {
    padding: 1rem;
    text-align: center;
    border-bottom: 2px solid var(--neon-purple);
}

.table-header.premier { background: linear-gradient(135deg, #37003c, #00ff85); }
.table-header.fa { background: linear-gradient(135deg, #1a1a2e, #e30613); }
.table-header.ucl { background: linear-gradient(135deg, #0a0a2e, #0033cc); }

.table-header i { font-size: 1.5rem; margin-right: 0.5rem; }
.table-header h3 { font-size: 1.2rem; font-weight: 700; display: inline; }
.table-header .season { font-size: 0.7rem; opacity: 0.8; display: block; margin-top: 0.3rem; }

.table-container { overflow-x: auto; padding: 0.5rem; }
.standings-table { width: 100%; border-collapse: collapse; font-size: 0.75rem; }
.standings-table th, .standings-table td { padding: 0.6rem 0.3rem; text-align: center; border-bottom: 1px solid var(--card-border); }
.standings-table th { color: var(--neon-purple); font-weight: 700; font-size: 0.7rem; }
.standings-table td { color: var(--text-primary); }
.standings-table .pts { font-weight: 800; color: var(--neon-purple); }
.standings-table .status-completed { color: #4caf50; }
.standings-table .status-upcoming { color: #ffaa00; }
.standings-table .semi-final-row td { background: rgba(176, 0, 255, 0.1); font-weight: 700; }

.table-footer {
    padding: 0.8rem;
    text-align: center;
    border-top: 1px solid var(--card-border);
    font-size: 0.7rem;
    color: var(--text-secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.view-fixtures-btn {
    background: transparent;
    border: 1px solid var(--neon-purple);
    color: var(--neon-purple);
    padding: 0.3rem 0.8rem;
    border-radius: 40px;
    font-size: 0.65rem;
    cursor: pointer;
    transition: all 0.3s;
}

.view-fixtures-btn:hover {
    background: var(--neon-purple);
    color: #000;
}

.snooker-scores-section {
    background: var(--bg-secondary);
    border-radius: 28px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid var(--card-border);
    transition: all 0.3s;
}

.snooker-scores-section:hover {
    border-color: var(--neon-purple);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--neon-purple);
    padding-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--neon-purple);
}

.section-header p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.snooker-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.gaming-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--card-border);
    transition: all 0.3s;
}

.gaming-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-purple);
}

.gaming-icon {
    font-size: 3rem;
    color: var(--neon-purple);
    margin-bottom: 1rem;
}

.gaming-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--neon-purple);
    margin: 0.5rem 0;
}

.price small {
    font-size: 0.8rem;
    font-weight: normal;
    color: var(--text-secondary);
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    text-align: left;
}

.price-features li {
    padding: 0.4rem 0;
    color: var(--text-secondary);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-features li i {
    color: var(--neon-purple);
    width: 20px;
}

.play-btn {
    background: var(--neon-purple);
    color: #000;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    font-size: 1rem;
}

.play-btn:hover { transform: scale(1.02); }

.scores-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 1.2rem;
    border: 1px solid var(--card-border);
}

.league-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--card-border);
}

.league-title i { font-size: 1.8rem; color: var(--neon-purple); }
.league-title h3 { font-size: 1.2rem; font-weight: 700; }

.match {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--card-border);
    transition: all 0.2s;
}

.match:hover {
    background: rgba(176, 0, 255, 0.1);
    padding-left: 0.5rem;
    border-radius: 10px;
}

.teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.team {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.score {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--neon-purple);
}

.match-status {
    font-size: 0.7rem;
    color: #ffaa00;
    margin-top: 0.3rem;
    text-align: center;
}

.status-live {
    color: #ff4444;
    animation: pulse 1.5s infinite;
}

.status-finished { color: #4caf50; }

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.update-time {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.refresh-btn {
    background: transparent;
    border: 1px solid var(--neon-purple);
    color: var(--neon-purple);
    padding: 0.3rem 0.8rem;
    border-radius: 40px;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-left: 0.5rem;
}

.refresh-btn:hover {
    background: var(--neon-purple);
    color: #000;
}

.snooker-lounge-img, .podcast-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.snooker-lounge-img { border: 2px solid var(--neon-purple); }
.podcast-img { border: 2px solid var(--neon-purple); }

.snooker-lounge-img:hover, .podcast-img:hover {
    transform: scale(1.02);
}

.location-note {
    margin-top: 0.8rem;
    font-size: 0.8rem;
    color: var(--neon-purple);
    font-weight: 500;
}

.app-buttons {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.app-store-btn, .play-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.app-store-btn { background: #000000; color: #ffffff; border: 1px solid #ffffff; }
.app-store-btn:hover { background: #333333; transform: scale(1.05); }
.play-store-btn { background: #34A853; color: #ffffff; border: 1px solid #ffffff; }
.play-store-btn:hover { background: #2E7D32; transform: scale(1.05); }

.cross-platform-note {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    text-align: center;
}

.podcast-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #ff0000;
    color: #ffffff;
    padding: 0.7rem 1rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s;
    width: 100%;
    margin-top: 0.5rem;
}

.podcast-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.playstation-hub-section {
    background: var(--ps-hub-bg);
    border-radius: 28px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid var(--neon-purple);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.playstation-hub-section:hover {
    border-color: var(--neon-purple);
    box-shadow: var(--neon-border-hover);
}

.playstation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--neon-purple);
    padding-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.playstation-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--neon-purple);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.playstation-header h2 i {
    font-size: 2rem;
    color: #0066ff;
}

.playstation-header p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.playstation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.ps-card {
    background: var(--ps-card-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--ps-card-border);
    transition: all 0.3s ease;
    cursor: pointer;
}

body.light-theme .ps-card {
    backdrop-filter: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ps-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-purple);
    box-shadow: var(--neon-border-hover);
}

.ps-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    transition: transform 0.3s ease;
}

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

.ps-card-img-placeholder {
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: transform 0.3s ease;
}

.ps-card:hover .ps-card-img-placeholder {
    transform: scale(1.02);
}

.ps-card-img-placeholder i {
    font-size: 3.5rem;
    color: white;
}

.ps-card-img-placeholder span {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: white;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.blue-gradient { background: var(--blue-grad); }
.dark-gradient { background: var(--dark-grad); }
.cyan-gradient { background: var(--cyan-grad); }
.light-gradient { background: var(--light-grad); }

.ps-card-content {
    padding: 1.2rem;
    text-align: center;
}

.ps-icon {
    font-size: 2rem;
    color: #0066ff;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.ps-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.ps-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--neon-purple);
    margin: 0.3rem 0;
}

.ps-price small {
    font-size: 0.7rem;
    font-weight: normal;
    color: var(--text-secondary);
}

.ps-features {
    list-style: none;
    padding: 0;
    margin: 0.8rem 0;
    text-align: left;
}

.ps-features li {
    padding: 0.3rem 0;
    color: var(--text-secondary);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ps-features li i {
    color: #0066ff;
    width: 18px;
    font-size: 0.7rem;
}

.ps-btn {
    background: linear-gradient(135deg, #0066ff, #003791);
    color: white;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.ps-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.5);
    background: linear-gradient(135deg, #0088ff, #0044aa);
}

.footer {
    background: var(--footer-bg);
    padding: 2rem;
    border-radius: 20px;
    margin-top: 2rem;
    border: 1px solid var(--card-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.footer-logo-area img {
    height: 60px;
    width: auto;
}

.footer-contact p, .footer-contact a {
    color: var(--footer-text);
    font-size: 0.85rem;
    margin: 0.3rem 0;
    text-decoration: none;
}

.footer-contact a:hover { color: var(--neon-purple); }

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--footer-text);
    font-size: 1.3rem;
    transition: all 0.2s;
}

.social-icons a:hover {
    color: var(--neon-purple);
    transform: translateY(-3px);
}

.footer-credit {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--card-border);
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.footer-credit img {
    height: 30px;
    width: auto;
    vertical-align: middle;
}

.footer-credit span {
    color: var(--neon-purple);
    font-weight: 600;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content-large {
    background: var(--bg-secondary);
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    border: 1px solid var(--neon-purple);
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: white;
    z-index: 10;
    background: rgba(0,0,0,0.5);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.close-modal:hover {
    color: var(--neon-purple);
    background: rgba(0,0,0,0.8);
}

.modal-header-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.modal-content-card {
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 0 0 20px 20px;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--neon-purple);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.modal-details {
    color: var(--text-primary);
    line-height: 1.6;
}

.modal-details p { margin-bottom: 0.8rem; }
.modal-details ul { margin-left: 1.5rem; margin-bottom: 1rem; }
.modal-details li { margin-bottom: 0.5rem; color: var(--text-secondary); }

.modal-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--neon-purple);
}

.modal-stat { text-align: center; }
.modal-stat-number { font-size: 1.3rem; font-weight: 800; color: var(--neon-purple); display: block; }
.modal-stat-label { font-size: 0.7rem; color: var(--text-secondary); }

.prize-highlight {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffaa00;
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--neon-purple);
}

.audio-player-container {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 12px;
    margin: 1rem 0;
}

audio { width: 100%; }

.concept-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.gallery-item {
    position: relative;
    text-align: center;
}

.gallery-item img {
    width: 100%;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s, border 0.2s;
    aspect-ratio: 1 / 1.2;
    object-fit: cover;
    border: 2px solid var(--neon-purple);
}

.gallery-item img:hover {
    transform: scale(1.02);
}

.gallery-caption {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--neon-purple);
    text-align: center;
}

.gallery-caption small {
    font-size: 0.6rem;
    color: var(--text-secondary);
    font-weight: normal;
}

.ps-modal-header {
    background: linear-gradient(135deg, #0066ff, #003791);
    padding: 2rem;
    text-align: center;
    border-radius: 20px 20px 0 0;
}

.ps-modal-header i {
    font-size: 3rem;
    color: white;
    margin-bottom: 0.5rem;
}

.ps-modal-header h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
}

.ps-modal-header p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.ps-modal-body {
    padding: 1.5rem;
}

.ps-game-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.ps-game-item {
    background: rgba(0, 100, 255, 0.1);
    padding: 0.8rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.2s;
}

.ps-game-item:hover {
    background: rgba(0, 100, 255, 0.2);
    transform: translateX(5px);
}

.ps-game-item i {
    font-size: 1.5rem;
    color: #0066ff;
}

.ps-game-item span {
    font-weight: 600;
    font-size: 0.85rem;
}

body.light-theme .ps-modal-body {
    background: white;
}

body.light-theme .ps-game-item {
    background: rgba(0, 100, 255, 0.08);
}

.football-tables-section .section-header h2,
.football-tables-section .section-header h2 i,
.football-tables-section .table-header h3,
.football-tables-section .table-header i,
.football-tables-section .table-header .season {
    color: #ffffff !important;
}

body.light-theme .football-tables-section .section-header h2,
body.light-theme .football-tables-section .section-header h2 i,
body.light-theme .football-tables-section .table-header h3,
body.light-theme .football-tables-section .table-header i,
body.light-theme .football-tables-section .table-header .season {
    color: #ffffff !important;
}

@media (max-width: 1200px) {
    .projects-grid, .experience-grid, .tables-grid, .playstation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .snooker-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-text h1 { font-size: 2.5rem; }
    .hero-text .tagline { font-size: 1.2rem; }
    .philosophy-grid, .projects-grid, .profile-grid-2col, .experience-grid, .tables-grid, .snooker-grid, .playstation-grid {
        grid-template-columns: 1fr;
    }
    .hero-full-image { width: 90%; }
    .logo-img { height: 50px; }
    .floating-icon { font-size: 1.2rem; opacity: 0.25; }
    .app-buttons { flex-direction: column; align-items: center; }
    .app-store-btn, .play-store-btn { width: 80%; justify-content: center; }
    .modal-header-image { height: 150px; }
    .concept-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .ps-card-img, .ps-card-img-placeholder, .snooker-lounge-img, .podcast-img { height: 160px; }
}

@media (max-width: 480px) {
    .floating-icon { display: none; }
    .concept-gallery-grid { grid-template-columns: 1fr; }
    .modal-header-image { height: 120px; }
}

/* Gallery Grid for Game Arena */
.concept-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .concept-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    position: relative;
    text-align: center;
}

.gallery-item img {
    width: 100%;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s, border 0.2s;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 2px solid var(--neon-purple);
}

.gallery-item img:hover {
    transform: scale(1.02);
}

.gallery-caption {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--neon-purple);
    text-align: center;
}

.gallery-caption small {
    font-size: 0.6rem;
    color: var(--text-secondary);
    font-weight: normal;
}

/* Fix FA Cup header background to cover full width */
.football-tables-section .table-header.fa {
    background: linear-gradient(135deg, #1a1a2e, #e30613) !important;
    width: 100% !important;
    display: block !important;
    border-radius: 20px 20px 0 0 !important;
    padding: 1rem !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

/* Ensure all table headers have full width */
.football-tables-section .table-header {
    width: 100% !important;
    display: block !important;
    border-radius: 20px 20px 0 0 !important;
    padding: 1rem !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

/* Make sure the card doesn't clip the header */
.football-tables-section .league-table-card {
    overflow: hidden !important;
    border-radius: 20px !important;
}

/* Force FA Cup text to be visible */
.football-tables-section .table-header.fa h3,
.football-tables-section .table-header.fa i,
.football-tables-section .table-header.fa .season {
    color: #ffffff !important;
}

/* LIVE SCORES SCROLLING SECTION - NEON SLIM DESIGN */
.livescore-scroll-section {
    background: var(--bg-secondary);
    border-radius: 28px;
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    border: 1px solid var(--card-border);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.livescore-scroll-section:hover {
    border-color: var(--neon-purple);
    box-shadow: var(--neon-border-hover);
}

.livescore-scroll-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--card-border);
    flex-wrap: wrap;
    gap: 0.5rem;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--neon-purple);
}

.live-dot {
    width: 10px;
    height: 10px;
    background-color: #ff4444;
    border-radius: 50%;
    animation: livePulse 1.5s infinite;
}

.live-refresh {
    font-size: 0.6rem;
    font-weight: normal;
    color: var(--text-secondary);
    background: rgba(176, 0, 255, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
}

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

.scroll-controls {
    display: flex;
    gap: 0.5rem;
}

.scroll-btn {
    background: transparent;
    border: 1px solid var(--neon-purple);
    color: var(--neon-purple);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.scroll-btn:hover {
    background: var(--neon-purple);
    color: #000;
}

.livescore-ticker-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.livescore-ticker {
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    white-space: nowrap;
    padding: 0.5rem 0;
}

.livescore-ticker::-webkit-scrollbar {
    height: 3px;
}

.livescore-ticker::-webkit-scrollbar-track {
    background: var(--card-border);
    border-radius: 10px;
}

.livescore-ticker::-webkit-scrollbar-thumb {
    background: var(--neon-purple);
    border-radius: 10px;
}

.ticker-track {
    display: inline-flex;
    gap: 1rem;
    padding: 0.2rem 0;
}

.ticker-match {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--card-bg);
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    border: 1px solid var(--card-border);
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s;
}

.ticker-match:hover {
    border-color: var(--neon-purple);
    transform: translateY(-2px);
}

.match-league {
    color: var(--neon-purple);
    font-weight: 700;
    font-size: 0.65rem;
    letter-spacing: 0.5px;
    padding-right: 0.5rem;
    border-right: 1px solid var(--card-border);
}

.match-home, .match-away {
    color: var(--text-primary);
}

.match-score {
    font-weight: 800;
    color: var(--neon-purple);
    background: rgba(176, 0, 255, 0.15);
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    font-size: 0.7rem;
}

.match-status {
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
}

.match-status.live {
    background: #ff4444;
    color: white;
    animation: statusPulse 1.5s infinite;
}

.match-status.ft {
    background: #4caf50;
    color: white;
}

.match-status.not-started {
    background: #ffaa00;
    color: #1a1a1a;
}

.match-status.halftime {
    background: #ff8800;
    color: white;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.loading-scores {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.no-scores {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .livescore-scroll-section {
        padding: 0.8rem 1rem;
    }
    
    .ticker-match {
        padding: 0.4rem 0.8rem;
        gap: 0.5rem;
        font-size: 0.65rem;
    }
    
    .match-league {
        font-size: 0.55rem;
    }
    
    .match-score {
        font-size: 0.6rem;
        padding: 0.15rem 0.4rem;
    }
    
    .live-indicator {
        gap: 0.5rem;
        font-size: 0.65rem;
    }
    
    .live-refresh {
        font-size: 0.5rem;
    }
}

/* ========== PROFILE SECTION BACKGROUND - STRETCH TO FILL CONTAINER ========== */
.profile-section {
    background-image: url('35.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;           /* Stretches to fill the entire container */
    background-attachment: local;
    position: relative;
    background-color: var(--bg-secondary); /* fallback */
}

/* Remove any dark overlay */
.profile-section::before {
    display: none;
}

/* ========== ONLY HEADINGS STAY WHITE ========== */
.profile-section .section-title,          /* "Play. Social. Innovate." */
.profile-section .section-title i,
.experience-fullwidth h3,                /* "Experience" heading */
.experience-fullwidth h3 i {
    color: #ffffff !important;
}

/* ========== ALL OTHER TEXT FOLLOWS THEME ========== */
.profile-section p,
.profile-section .profile-card,
.profile-section .profile-card p,
.profile-section .skills-list .skill-tag,
.experience-fullwidth .experience-item,
.experience-fullwidth .experience-item strong,
.experience-fullwidth .experience-item small,
.experience-fullwidth .experience-item .experience-short {
    color: var(--text-primary);          /* respects dark/light mode */
}

/* Skill tags background uses theme variable */
.profile-section .skill-tag {
    background: var(--skill-tag-bg);
    border-color: var(--card-border);
    color: var(--text-primary);
}

.profile-section .skill-tag:hover {
    background: var(--neon-purple);
    color: #000;
}

/* Experience cards use theme background */
.experience-item {
    background: var(--profile-card-bg);
    transition: all 0.3s;
}

.experience-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--neon-border-hover);
}

/* Light theme adjustments (non‑heading text uses theme) */
body.light-theme .profile-section p,
body.light-theme .profile-section .profile-card,
body.light-theme .profile-section .profile-card p,
body.light-theme .profile-section .skills-list .skill-tag,
body.light-theme .experience-fullwidth .experience-item,
body.light-theme .experience-fullwidth .experience-item strong,
body.light-theme .experience-fullwidth .experience-item small {
    color: var(--text-primary);
}

/* Keep headings white also in light theme */
body.light-theme .profile-section .section-title,
body.light-theme .profile-section .section-title i,
body.light-theme .experience-fullwidth h3,
body.light-theme .experience-fullwidth h3 i {
    color: #ffffff !important;
}


        /* CTA WhatsApp Button Styles (matches podcast button) */
        .cta-whatsapp-card {
            background: linear-gradient(135deg, #e30613, #a0000a);
            cursor: pointer;
        }

        .cta-whatsapp-card .cta-whatsapp-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            background: #ffffff20;
            backdrop-filter: blur(4px);
            color: #ffffff;
            font-size: 1rem;
            font-weight: 700;
            padding: 0.7rem 1rem;
            border-radius: 40px;
            text-decoration: none;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 0.5rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .cta-whatsapp-card .cta-whatsapp-btn i {
            font-size: 1.2rem;
            color: #25D366;
        }

        .cta-whatsapp-card .cta-whatsapp-btn:hover {
            transform: scale(1.02);
            background: #ffffff40;
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
        }

        .cta-whatsapp-card .price {
            color: #ffcc00;
        }

        @media (max-width: 768px) {
            .cta-whatsapp-card .cta-whatsapp-btn {
                font-size: 0.85rem;
                gap: 0.5rem;
            }
        }

        /* Hover effect for the booking CTA button inside Snooker card */
.gaming-card .cta-whatsapp-btn {
    transition: all 0.3s ease;
}
.gaming-card .cta-whatsapp-btn:hover {
    transform: scale(1.02);
    background: hsl(356, 100%, 50%) !important;      /* darker red on hover */
    box-shadow: 0 0 12px rgba(224, 10, 20, 0.6);
}
.gaming-card .cta-whatsapp-btn:hover i {
    transform: scale(1.1);
}