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

:root {
    /* Frozen Color Palette */
    --ice-blue: #4FC3F7;
    --crystal-blue: #81D4FA;
    --frost-white: #F8F9FA;
    --snow-white: #FFFFFF;
    --deep-ice: #0277BD;
    --aurora-purple: #7B1FA2;
    --aurora-pink: #E91E63;
    --ice-silver: #ECEFF1;
    --crystal-glow: rgba(79, 195, 247, 0.3);
    --shadow-ice: rgba(2, 119, 189, 0.2);
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 50%, #90CAF9 100%);
    color: var(--deep-ice);
    overflow-x: hidden;
    position: relative;
}

/* Frozen Background Effects */
.frozen-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.snow-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 100px 200px, #ffffff, transparent),
        radial-gradient(1px 1px at 200px 300px, #ffffff, transparent),
        radial-gradient(1px 1px at 400px 100px, #ffffff, transparent);
    animation: snowfall 20s linear infinite;
}

@keyframes snowfall {
    0% { transform: translateY(-100vh); }
    100% { transform: translateY(100vh); }
}

.ice-crystals-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 30%, rgba(79, 195, 247, 0.1) 31%, rgba(79, 195, 247, 0.1) 33%, transparent 34%),
        linear-gradient(-45deg, transparent 30%, rgba(129, 212, 250, 0.1) 31%, rgba(129, 212, 250, 0.1) 33%, transparent 34%);
    background-size: 200px 200px;
    animation: crystalShimmer 15s ease-in-out infinite;
}

@keyframes crystalShimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.aurora-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(123, 31, 162, 0.1),
        rgba(233, 30, 99, 0.1),
        transparent
    );
    animation: auroraWave 25s ease-in-out infinite;
}

@keyframes auroraWave {
    0%, 100% { transform: translateX(-50px) rotateZ(0deg); opacity: 0.2; }
    50% { transform: translateX(50px) rotateZ(2deg); opacity: 0.4; }
}

.floating-snowflakes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-snowflakes::before,
.floating-snowflakes::after {
    content: '❄';
    position: absolute;
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    animation: floatSnowflake 12s linear infinite;
}

.floating-snowflakes::before {
    top: 20%;
    left: 10%;
    animation-delay: -3s;
}

.floating-snowflakes::after {
    top: 60%;
    right: 15%;
    animation-delay: -7s;
}

@keyframes floatSnowflake {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100vh) rotate(360deg); }
}

/* Navigation */
.frozen-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(79, 195, 247, 0.2);
    z-index: 1000;
}

.nav-crystal-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ice-blue), transparent);
    animation: crystalPulse 3s ease-in-out infinite;
}

@keyframes crystalPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-crystal {
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, var(--ice-blue), var(--crystal-blue));
    border-radius: 50%;
    position: relative;
    animation: crystalRotate 4s linear infinite;
}

.brand-crystal::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: var(--snow-white);
    border-radius: 50%;
}

@keyframes crystalRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.brand-text {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--deep-ice);
    text-shadow: 0 0 10px var(--crystal-glow);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--deep-ice);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--ice-blue);
    text-shadow: 0 0 10px var(--crystal-glow);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--ice-blue), var(--crystal-blue));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--ice-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-frozen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    background: radial-gradient(circle at center, rgba(79, 195, 247, 0.1), transparent);
}

.hero-crystal-frame {
    position: relative;
    max-width: 800px;
    width: 100%;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 2px solid rgba(79, 195, 247, 0.3);
    box-shadow: 0 20px 60px var(--shadow-ice);
}

.hero-crystal-frame::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--ice-blue), var(--crystal-blue), var(--aurora-purple));
    border-radius: 30px;
    z-index: -1;
    animation: crystalBorderPulse 4s ease-in-out infinite;
}

@keyframes crystalBorderPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.hero-content-wrapper {
    text-align: center;
    position: relative;
}

.hero-title-container {
    position: relative;
    margin-bottom: 2rem;
}

.hero-main-title {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0;
}

.title-slot {
    display: block;
    color: var(--ice-blue);
    text-shadow: 
        0 0 20px var(--crystal-glow),
        0 0 40px var(--crystal-glow),
        0 0 60px var(--crystal-glow);
    animation: iceGlow 3s ease-in-out infinite;
}

.title-frozen {
    display: block;
    color: var(--deep-ice);
    font-size: 5rem;
    text-shadow: 
        0 0 30px rgba(129, 212, 250, 0.5),
        0 0 50px rgba(129, 212, 250, 0.3);
    animation: frozenPulse 4s ease-in-out infinite;
}

@keyframes iceGlow {
    0%, 100% { text-shadow: 0 0 20px var(--crystal-glow); }
    50% { text-shadow: 0 0 40px var(--crystal-glow), 0 0 60px var(--crystal-glow); }
}

@keyframes frozenPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.title-ice-effects {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(79, 195, 247, 0.2), transparent);
    border-radius: 50%;
    animation: iceRadiate 6s ease-in-out infinite;
}

@keyframes iceRadiate {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.6; }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--deep-ice);
    margin-bottom: 3rem;
    line-height: 1.6;
    opacity: 0.9;
}

.hero-cta-container {
    display: flex;
    justify-content: center;
}

.frozen-cta-btn {
    position: relative;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--snow-white);
    background: linear-gradient(135deg, var(--ice-blue), var(--deep-ice));
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px var(--shadow-ice);
    overflow: hidden;
}

.frozen-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--shadow-ice);
}

.btn-ice-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.frozen-cta-btn:hover .btn-ice-glow {
    left: 100%;
}

.btn-sparkles {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--snow-white);
    border-radius: 50%;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: translateY(-50%) scale(1); }
    50% { opacity: 1; transform: translateY(-50%) scale(1.3); }
}

/* Floating Info Cards */
.floating-info-section {
    padding: 6rem 2rem;
    position: relative;
}

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

.floating-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.info-crystal-card {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 50px var(--shadow-ice);
    border: 1px solid rgba(79, 195, 247, 0.2);
    transition: all 0.3s ease;
}

.info-crystal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px var(--shadow-ice);
}

.card-ice-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ice-blue), var(--crystal-blue), var(--aurora-purple));
    border-radius: 25px 25px 0 0;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--ice-blue), var(--crystal-blue));
    border-radius: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon::before {
    content: '❄';
    color: var(--snow-white);
    font-size: 1.5rem;
}

.card-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--deep-ice);
}

.card-text {
    line-height: 1.7;
    color: var(--deep-ice);
    opacity: 0.9;
}

/* About Crystal Section */
.about-crystal-section {
    padding: 6rem 2rem;
    position: relative;
}

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

.section-ice-badge {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(45deg, var(--ice-blue), var(--crystal-blue));
    color: var(--snow-white);
    border-radius: 50px;
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.crystal-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--deep-ice);
    margin-bottom: 2rem;
    text-shadow: 0 0 20px var(--crystal-glow);
}

.ice-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--ice-blue), transparent);
    margin: 0 auto;
}

.about-ice-card {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 4rem 3rem;
    border: 2px solid rgba(79, 195, 247, 0.3);
}

.ice-card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--ice-blue), var(--crystal-blue));
    border-radius: 30px;
    z-index: -1;
    opacity: 0.3;
    animation: cardGlow 4s ease-in-out infinite;
}

@keyframes cardGlow {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.5; }
}

.about-frozen-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--deep-ice);
    text-align: center;
}

/* Crystalline Features */
.features-crystal-section {
    padding: 6rem 2rem;
    position: relative;
}

.crystal-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature-ice-card {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(79, 195, 247, 0.2);
}

.feature-ice-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.feature-crystal-border {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, var(--ice-blue), var(--crystal-blue), var(--aurora-purple));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-ice-card:hover .feature-crystal-border {
    opacity: 0.3;
}

.feature-ice-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(79, 195, 247, 0.1), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-ice-card:hover .feature-ice-glow {
    opacity: 1;
}

.feature-ice-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--deep-ice);
    margin-bottom: 1.5rem;
}

.feature-ice-text {
    line-height: 1.7;
    color: var(--deep-ice);
    opacity: 0.9;
}

/* Game Portal Section */
.game-portal-section {
    padding: 6rem 2rem;
    position: relative;
}

.game-portal-content {
    display: grid;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
}

.portal-description-card {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 3rem 2rem;
    border: 1px solid rgba(79, 195, 247, 0.3);
}

.portal-ice-glow {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, var(--ice-blue), var(--crystal-blue));
    border-radius: 25px;
    z-index: -1;
    opacity: 0.2;
}

.portal-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--deep-ice);
}

.game-ice-portal {
    position: relative;
}

.portal-crystal-frame {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem;
    border: 2px solid rgba(79, 195, 247, 0.3);
    box-shadow: 0 20px 60px var(--shadow-ice);
}

.portal-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
    border-radius: 20px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

.live-pulse {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.game-viewport {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

/* About Us Palace */
.about-us-palace {
    padding: 6rem 2rem;
    position: relative;
}

.palace-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.palace-image-section {
    position: relative;
}

.ice-image-frame {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    /* background: rgba(255, 255, 255, 0.1); */
    backdrop-filter: blur(20px);
    padding: 2rem;
}

.image-crystal-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* border: 2px solid; */
    /* border-image: linear-gradient(45deg, var(--ice-blue), var(--crystal-blue)) 1; */
    border-radius: 25px;
}

.ice-image-frame img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.image-frost-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    pointer-events: none;
}

.palace-text-section {
    position: relative;
}

.palace-text-card {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 3rem 2rem;
    border: 1px solid rgba(79, 195, 247, 0.3);
}

.text-ice-glow {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, var(--ice-blue), var(--crystal-blue));
    border-radius: 25px;
    z-index: -1;
    opacity: 0.2;
}

.text-section {
    margin-bottom: 2.5rem;
}

.text-section:last-child {
    margin-bottom: 0;
}

.palace-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--deep-ice);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--crystal-glow);
}

.palace-text {
    line-height: 1.7;
    color: var(--deep-ice);
    opacity: 0.9;
}

/* Frozen Footer */
.frozen-footer {
    position: relative;
    background: linear-gradient(135deg, var(--deep-ice) 0%, var(--ice-blue) 100%);
    color: var(--snow-white);
    padding: 4rem 2rem 2rem;
}

.footer-ice-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--crystal-blue), var(--aurora-purple), var(--crystal-blue));
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-brand-ice {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-ice-crystal {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--snow-white), var(--crystal-blue));
    border-radius: 50%;
    position: relative;
    animation: crystalRotate 6s linear infinite;
}

.brand-ice-crystal::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: var(--deep-ice);
    border-radius: 50%;
}

.footer-brand-text {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 600;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.footer-ice-links {
    display: flex;
    gap: 2rem;
}

.footer-ice-link {
    color: var(--snow-white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.footer-ice-link:hover {
    color: var(--crystal-blue);
    text-shadow: 0 0 10px rgba(129, 212, 250, 0.5);
}

.footer-disclaimer-section {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-disclaimer-text {
    line-height: 1.6;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.footer-bottom-ice {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copyright {
    opacity: 0.8;
}

.footer-ice-badges {
    display: flex;
    gap: 1rem;
}

.ice-badge {
    display: block;
    width: 136px;
    height: 85px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 5px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ice-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.ice-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .title-frozen {
        font-size: 3.5rem;
    }
    
    .floating-cards-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .crystal-features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .game-portal-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .palace-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-main-section {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-ice-links {
        justify-content: center;
    }
    
    .footer-bottom-ice {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .crystal-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .nav-content {
        padding: 1rem;
    }
    
    .hero-crystal-frame {
        padding: 3rem 1.5rem;
    }
    
    .info-crystal-card,
    .portal-description-card,
    .palace-text-card {
        padding: 2rem 1.5rem;
    }
    
    .floating-cards-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .crystal-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

.content {
    padding: 40px 10%;
   
}
.content-block {}

.content-block h2 {
    color: #343caf;
}

.content-block p,
ul {
    color: rgba(25, 28, 45, 0.7);
}

.play-ground-area {
    padding: 2rem;
    background: black;
}

.play-game {
    max-width: 940px;
    margin: 0 auto;
}

a {
    text-decoration: none;
}