@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 20px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #eff3fe;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 100vh;
}

/* Hero Section */
.frame-hero {
    width: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 508.89" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><rect x="0" y="0" height="100%" width="100%" fill="url(%23grad)" opacity="1"/><defs><radialGradient id="grad" gradientUnits="userSpaceOnUse" cx="0" cy="0" r="10" gradientTransform="matrix(-0.0000042925 -42.85 121.25 -0.000012146 720 509)"><stop stop-color="rgba(28,36,59,1)" offset="0"/><stop stop-color="rgba(20,25,41,1)" offset="0.5"/><stop stop-color="rgba(11,14,23,1)" offset="1"/></radialGradient></defs></svg>');
    background-size: cover;
    background-position: center;
    color: white;
}

.frame-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 300px 200px 40px 200px;
    width: 100%;
}

.headerContent {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    width: 100%;
}

.logo {
    max-width: 471px;
    flex-shrink: 0;
}

.logo img {
    width: 100%;
    height: 100%;
}

.contactBoxContainer {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex: 1;
    min-width: 1px;
}

.contactBox {
    background-color: transparent;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    text-transform: initial;
    font-size: 20px;
    font-weight: bold;
}

/* Common Section Styles */
section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    gap: 10px;
    align-items: flex-start;
    padding: 40px 200px;
}

/* Headlines and Titles */
.headline {
    text-transform: capitalize;
    font-weight: 900;
    font-size: 60px;
    line-height: normal;
    color: #0b0e17;
    width: 100%;
}

.section-title {
    text-transform: capitalize;
    font-weight: 900;
    font-size: 60px;
    line-height: normal;
    color: #0b0e17;
    width: 100%;
}

.subsection-title {
    text-transform: capitalize;
    font-weight: 800;
    font-size: 30px;
    line-height: normal;
    color: black;
    width: 100%;
}

/* Description Text */
.description {
    font-weight: 500;
    font-size: 20px;
    color: #0b0e17;
    width: 100%;
}

.description p {
    line-height: normal;
    margin-bottom: 12px;
}

.description p:last-child {
    margin-bottom: 0;
}

.description ul {
    list-style-type: disc;
    margin-bottom: 12px;
    padding-left: 0;
}

.description ul:last-child {
    margin-bottom: 0;
}

.description li {
    margin-left: 30px;
    margin-bottom: 0;
}

.description li span {
    line-height: normal;
}

/* Frame 1 & 2 specific */
.frame-1-content {
    color: #0b0e17;
}

.frame-2-content {
    color: #0b0e17;
}

/* Service Cards (Frame 4) */
.serviceCardContainer {
    display: flex;
    gap: 10px;
    align-items: stretch;
    width: 100%;
}

.service-card {
    flex: 1;
    min-width: 1px;
    position: relative;
    border-radius: 12px;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.13);
    mix-blend-mode: overlay;
    pointer-events: none;
    border-radius: 12px;
}

.card-border {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.6);
    pointer-events: none;
    border-radius: 12px;
}

.card-content {
    text-transform: capitalize;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.card-title {
    font-weight: bold;
    line-height: normal;
    width: 100%;
}


li {
    margin-bottom: 0;
    margin-left: 30px;
}

.card-content li span {
    line-height: normal;
}

/* Experience Description */
.experience-desc {
    color: black;
}

/* Published Games (Frame 9-14) */
.frame-10 {
    display: flex;
    gap: 20px;
    height: 512px;
    align-items: flex-start;
    width: 100%;
    overflow: scroll;
}

.gameCardCardContainer {
    width: 651px;
    height: 100%;
    flex-shrink: 0;
}

.game-card {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 20px;
    position: relative;
    width: 100%;
    height: 100%;
}

.game-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 651px;
    height: 512px;
    border-radius: 6px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gameCardBttn,
.gameCardBttn {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 100px;
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: opacity 0.3s;
    text-decoration: none;
}

.gameCardBttn:hover,
.gameCardBttn:hover {
    opacity: 0.9;
}

.gameCardBttn p,
.gameCardBttn p {
    font-weight: bold;
    font-size: 20px;
    color: black;
}

/* Marketing Case Studies (Frame 15-18) */
.caseStudyContainer {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
}

.case-study-image {
    width: 100%;
    display: flex;
    justify-content: center;
    height: 100%;
    border-radius: 6px;
    overflow: hidden;
}

.case-study-image img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.frame-17 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    color: black;
    width: 100%;
}

.case-study-title {
    text-transform: capitalize;
    font-weight: 800;
    font-size: 30px;
    line-height: normal;
}

.case-study-challenge {
    font-weight: 500;
    font-size: 20px;
    min-width: 100%;
    width: min-content;
}

.case-study-challenge p {
    line-height: normal;
    margin-bottom: 12px;
}

.case-study-challenge p:last-child {
    margin-bottom: 0;
}

.caseStudyListsContainer {
    display: flex;
    gap: 54px;
    align-items: flex-start;
    width: 100%;
}

.case-study-col {
    flex: 1;
    min-width: 1px;
}

.case-study-col p {
    line-height: normal;
    margin-bottom: 12px;
}

.case-study-col p:last-child {
    margin-bottom: 0;
}

/* Technologies List (Frame 20) */
.tech-list {
    display: block;
    font-weight: 500;
    list-style-type: disc;
    font-size: 20px;
    width: 100%;
    padding-left: 0;
}

.tech-list li {
    margin-bottom: 0;
    margin-left: 30px;
}

.tech-list li span {
    line-height: normal;
}

.frame-22 {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
}

.frame-23 {
    background-color: #6d99ff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.frame-23:hover {
    opacity: 0.9;
}

.frame-23 p {
    text-transform: capitalize;
    font-weight: bold;
    font-size: 20px;
    color: black;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .frame-hero-content,
    section {
        padding: 40px 100px;
    }
}

@media (max-width: 768px) {
    .frame-hero-content {
        padding: 150px 40px 40px 40px;
    }

    section {
        padding: 40px;
    }

    .headline,
    .section-title {
        font-size: 40px;
    }

    .subsection-title,
    .case-study-title {
        font-size: 24px;
    }

    .description,
    .card-content,
    .tech-list {
        font-size: 16px;
    }

    .headerContent {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo {
        width: 100%;
        height: auto;
    }

    .serviceCardContainer {
        flex-direction: column;
    }

    .frame-10 {
        flex-direction: column;
        height: auto;
    }

    .gameCardCardContainer,
    .gameCardCardContainer {
        width: 100%;
    }

    .game-image {
        width: 100%;
        height: auto;
        position: relative;
        border-radius: 6px 6px 0 0;
    }

    .gameCardBttn {
        border-radius: 0 0 6px 6px;
        width: 100%;
    }

    .caseStudyListsContainer {
        flex-direction: column;
        gap: 20px;
    }
}