/* =================================
   CSS RESET & BASE STYLES
   ================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Force remove any browser default margins/padding */
html, body {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    outline: 0 !important;
    overflow-x: hidden;
}

/* Prevent background resizing during viewport changes */
.hero__game-showcase,
.hero__game-img {
    will-change: auto;
}

/* Disable transitions on orientation change */
@media screen and (orientation: portrait), screen and (orientation: landscape) {
    .hero__game-showcase,
    .hero__game-img {
        transition: none !important;
        animation: none !important;
    }
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100vw;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* =================================
   UTILITY CLASSES
   ================================= */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
}

.section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.section__title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.about .section__title {
    color: #fff;
    font-size: 2.5rem;
}

.about .section__subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.section__subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.text-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn--primary {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: #fff;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.4);
}

.btn--outline {
    background: transparent;
    border: 2px solid #0ea5e9;
    color: #0ea5e9;
}

.btn--outline:hover {
    background: #0ea5e9;
    color: #fff;
    transform: translateY(-2px);
}

.btn__icon {
    width: 20px;
    height: 20px;
}

/* =================================
   HEADER & NAVIGATION
   ================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav__logo-img {
    height: 40px;
    width: auto;
}

.nav__logo-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    white-space: nowrap;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__link {
    color: #2c3e50;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    transition: width 0.3s ease;
}

.nav__link:hover::after {
    width: 100%;
}

.nav__toggle,
.nav__close {
    display: none;
    font-size: 1.5rem;
    color: #2c3e50;
    cursor: pointer;
}

/* =================================
   HERO SECTION
   ================================= */

.hero {
    position: relative;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
    box-sizing: border-box;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3) 3px, transparent 3px),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 3px, transparent 3px),
        radial-gradient(circle at 40% 80%, rgba(120, 219, 255, 0.4) 4px, transparent 4px),
        linear-gradient(45deg, transparent 24%, rgba(255, 255, 255, 0.2) 25%, rgba(255, 255, 255, 0.2) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, 0.2) 75%, rgba(255, 255, 255, 0.2) 76%, transparent 77%);
    background-size: 50px 50px, 60px 60px, 40px 40px, 30px 30px;
    background-position: 0 0, 20px 20px, 40px 40px, 0 0;
    opacity: 0.7;
    z-index: -1;
}

/* Hero background removed - using game image as fullscreen background */

.hero__container {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 4rem;
}

.hero__text-content {
    flex: 1;
    max-width: 500px;
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.text-highlight {
    color: #FF6B35;
    font-weight: 700;
}

.hero__subtitle {
    font-size: 1.3rem;
    color: #5f6368;
    margin-bottom: 2.5rem;
    line-height: 1.4;
    font-weight: 400;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    background: #2c5aa0;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero__cta:hover {
    background: #1e3f73;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
}

.hero__award {
    margin: 1.5rem 0;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.award-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #2c3e50;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.award-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    animation: shimmer 3s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.award-badge:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.4);
}

.award-badge i {
    font-size: 1.1rem;
    color: #d97706;
}

.award-text {
    line-height: 1.3;
    max-width: 280px;
}

.hero__avatar {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__avatar-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.hero__avatar-img {
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: 50%;
}

.hero__social {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 20;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #2c3e50;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Removed old hero game showcase styles */

.store-btn {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.store-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.store-btn__img {
    width: 160px;
    height: auto;
    display: block;
}

.store-btn--small {
    border-radius: 6px;
}

.store-btn__img--small {
    width: 100px;
    height: auto;
}

.store-btn--medium {
    border-radius: 8px;
}

.store-btn__img--medium {
    width: 130px;
    height: auto;
}

.store-btn--disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.store-btn--disabled:hover {
    transform: none;
    opacity: 0.5;
}

/* Removed old hero game and stats styles */

/* =================================
   ABOUT SECTION
   ================================= */

.about {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.8) 0%, rgba(2, 132, 199, 0.8) 50%, rgba(3, 105, 161, 0.8) 100%), url('../assets/aboutbg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: flex-start;
    min-height: 60vh;
}

.about__text {
    padding: 2rem 0;
}

.about__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about__description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about__disclaimer {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 2rem;
    line-height: 1.6;
    font-style: italic;
}

.about__strengths-title {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 0.5rem;
}

.about__strength {
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid rgba(255, 255, 255, 0.4);
}

.about__strength-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.about__right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    margin-top: 2rem;
}

.about__right-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.about__cta {
    margin-top: 2rem;
}

.btn--white {
    background: #fff;
    color: #0284c7;
    border: 2px solid #fff;
    font-weight: 600;
    padding: 1rem 2.5rem;
}

.btn--white:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}

.about__image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about__image:hover .about__img {
    transform: scale(1.05);
}

/* =================================
   TEAM SECTION
   ================================= */

.team {
    background: #ffffff;
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team__member {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.team__member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team__image {
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
}

.team__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team__member:hover .team__img {
    transform: scale(1.1);
}

.team__name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.team__role {
    color: #666;
    margin-bottom: 1rem;
}

.team__bio-btn {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.team__bio-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(14, 165, 233, 0.4);
}

/* =================================
   GAMES SECTION
   ================================= */

.games {
    background: #f8f9fa;
}

.games__store-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.store-btn {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.store-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.store-btn__img {
    width: 160px;
    height: auto;
    display: block;
}

.store-btn--small {
    border-radius: 6px;
}

.store-btn__img--small {
    width: 100px;
    height: auto;
}

.store-btn--medium {
    border-radius: 8px;
}

.store-btn__img--medium {
    width: 130px;
    height: auto;
}

.store-btn--disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.store-btn--disabled:hover {
    transform: none;
    opacity: 0.5;
}

.games__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.game__card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.game__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.game__image {
    height: 200px;
    overflow: hidden;
}

.game__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game__card:hover .game__img {
    transform: scale(1.1);
}

.game__content {
    padding: 2rem;
}

.game__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.game__description {
    color: #666;
    margin-bottom: 1.5rem;
}

.game__links {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* =================================
   SKILLS SECTION
   ================================= */

.skills {
    background: #f8f9fa;
}

.skills__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.skill__card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    text-align: center;
}

.skill__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.skill__icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c5aa0;
}

.skill__icon i {
    transition: transform 0.3s ease;
}

.skill__card:hover .skill__icon i {
    transform: scale(1.1);
}

.skill__content {
    text-align: center;
}

.skill__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.skill__description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.skill__level {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill__progress {
    height: 100%;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    border-radius: 4px;
    transition: width 1s ease-in-out;
    width: 0%;
}

.skill__card.animate .skill__progress[data-width="90%"] { width: 90%; }
.skill__card.animate .skill__progress[data-width="85%"] { width: 85%; }
.skill__card.animate .skill__progress[data-width="80%"] { width: 80%; }
.skill__card.animate .skill__progress[data-width="88%"] { width: 88%; }
.skill__card.animate .skill__progress[data-width="92%"] { width: 92%; }

/* =================================
   EDUCATION/CERTIFICATION SECTION
   ================================= */

.education {
    background: #ffffff;
}

.education__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.education__description {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.education__timeline {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 1rem;
}

.timeline__item {
    position: relative;
    padding: 1.5rem 0;
    border-left: 2px solid #e5e7eb;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.timeline__item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 2rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2c5aa0;
}

.timeline__content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.timeline__date {
    color: #2c5aa0;
    font-weight: 500;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.timeline__content p {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.credential-id {
    display: inline-block;
    background: #f3f4f6;
    color: #6b7280;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-family: 'Courier New', monospace;
    margin-top: 0.5rem;
}

/* Special styling for degree items */
.timeline__item--degree {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    padding: 2rem;
    margin: 1rem 0;
    border-left: 4px solid #2c5aa0;
}

.timeline__item--degree::before {
    background: #2c5aa0;
    width: 12px;
    height: 12px;
    left: -8px;
    box-shadow: 0 0 0 4px #fff, 0 0 0 6px #2c5aa0;
}

.timeline__item--degree h3 {
    color: #2c5aa0;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.degree-details {
    font-style: italic;
    color: #4b5563;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.grade {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0.5rem 0;
}

.activities {
    color: #6b7280;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e5e7eb;
}

/* Section divider styling */
.timeline__item--divider {
    border-left: none;
    text-align: center;
    padding: 1.5rem 0;
}

.timeline__item--divider::before {
    display: none;
}

.section-divider {
    color: #2c5aa0;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 0 1rem;
    background: #fff;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -50%;
    right: -50%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #e5e7eb 20%, #2c5aa0 50%, #e5e7eb 80%, transparent 100%);
    z-index: -1;
}

/* Scrollbar for timeline */
.education__timeline::-webkit-scrollbar {
    width: 6px;
}

.education__timeline::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.education__timeline::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.education__timeline::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* =================================
   EXPERIENCE SECTION
   ================================= */

.work {
    background: #f8f9fa;
}

.experience__timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.experience__timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #2c5aa0 0%, #e5e7eb 50%, #2c5aa0 100%);
}

.experience__item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 80px;
}

.experience__item::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 20px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #2c5aa0;
    box-shadow: 0 0 0 4px #fff, 0 0 0 6px #2c5aa0;
}

.experience__content {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.experience__content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.experience__badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.experience__badge--current {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.experience__badge--producer {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
}

.experience__badge--associate {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
}

.experience__badge--freelance {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.experience__badge--specialist {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: white;
}

.experience__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.experience__company {
    font-size: 1.1rem;
    color: #2c5aa0;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.experience__date {
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.experience__achievements {
    list-style: none;
    padding: 0;
    margin: 0;
}

.experience__achievements li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #4b5563;
    line-height: 1.6;
}

.experience__achievements li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-size: 0.8rem;
}

.experience__links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.game-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    color: white;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.game-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
    color: white;
}

/* =================================
   CAREERS SECTION
   ================================= */

.careers {
    background: #ffffff;
}

.careers__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.careers__description {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.careers__image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.careers__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.careers__image:hover .careers__img {
    transform: scale(1.05);
}

/* =================================
   NEWS SECTION
   ================================= */

.news {
    background: #f8f9fa;
}

.news__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.news__article {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.news__article:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.news__image {
    height: 200px;
    overflow: hidden;
}

.news__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news__article:hover .news__img {
    transform: scale(1.1);
}

.news__content {
    padding: 2rem;
}

.news__badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.news__badge--milestone {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
}

.news__badge--product {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
}

.news__badge--launch {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.news__date {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.news__article--hidden {
    display: none;
}

.news__show-more {
    text-align: center;
    margin-top: 3rem;
}

.news__show-more .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

.news__show-more .btn i {
    transition: transform 0.3s ease;
}

.news__show-more .btn.expanded i {
    transform: rotate(180deg);
}

.news__title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news__excerpt {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.news__link {
    color: #0ea5e9;
    font-weight: 500;
    position: relative;
}

.news__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0ea5e9;
    transition: width 0.3s ease;
}

.news__link:hover::after {
    width: 100%;
}

/* =================================
   FOOTER
   ================================= */

.footer {
    background: #2c3e50;
    padding: 4rem 0 2rem;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer__description {
    color: #bdc3c7;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__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: #ecf0f1;
    transition: all 0.3s ease;
}

.footer__social-link:hover {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    transform: translateY(-2px);
}

.footer__title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer__link {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: #0ea5e9;
}

.footer__contact-item {
    color: #bdc3c7;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer__contact-item i {
    color: #0ea5e9;
    width: 16px;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer__copyright {
    color: #95a5a6;
}

/* =================================
   MODAL
   ================================= */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal__content {
    background: #ffffff;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal__close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal__close:hover {
    color: #0ea5e9;
}

.modal__body {
    color: #333;
    line-height: 1.6;
}

.modal__member {
    text-align: center;
}

.modal__member-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.modal__member-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.modal__member-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.modal__member-role {
    font-size: 1.1rem;
    color: #0ea5e9;
    font-weight: 500;
}

.modal__member-bio {
    text-align: left;
}

.modal__member-bio p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

/* =================================
   ANIMATIONS
   ================================= */

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100vw);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100vw);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-100vh);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(100vh);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* =================================
   SCROLLBAR STYLING
   ================================= */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f8f9fa;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
}
