/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Patrick Hand', cursive;
    line-height: 1.6;
    color: #4a4a4a;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    background-color: #f8f6f3;
    background-image: 
        linear-gradient(rgba(139, 69, 87, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 69, 87, 0.08) 1px, transparent 1px);
    background-size: 25px 25px;
    background-attachment: fixed;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(0.5px);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Cabin Sketch', cursive;
    font-weight: 700;
}

/* Common section divider styles */
section {
    position: relative;
    z-index: 1;
}

.section-angled-edge {
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Rubik Marker Hatch', cursive;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
    color: #8b4557;
    font-weight: 700;
    text-shadow: 2px 2px 3px rgba(0,0,0,0.15);
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding: 0 1.5rem;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -0.8rem;
    left: 10%;
    width: 80%;
    height: 3px;
    background: #8b4557;
    transform: rotate(-1deg);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(248, 246, 243, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid rgba(139, 69, 87, 0.2);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 00.4rem;
}

.header-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nav-logo h1 {
    font-family: 'Rubik Marker Hatch', cursive;
    color: #8b4557;
    font-size: 1.8rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.logo-subtitle {
    position: relative;
    top: -5px;
    left: -2px;
    font-family: 'Kalam', cursive;
    font-size: 0.75rem;
    font-weight: 400;
    color: white;
    background-color: #8b4557;
    padding: 0.00rem 0.5rem;
    border-radius: 0px;
    transform: skew(-10deg);
    letter-spacing: normal;
    display: block;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #4a4a4a;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Kalam', cursive;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #8b4557;
}

/* Power Roll Nav Link - Punk Style */
.nav-menu a[href="#power-roll"] {
    background: linear-gradient(135deg, #0f1419 0%, #34495e 100%);
    color: #ffffff !important;
    padding: 0.4rem 1rem;
    border-radius: 0px;
    border: 2px solid #2c3e50; /* Gray-blue borders on top/right/bottom */
    border-left: 5px solid #ff0040; /* Always bright pink left border */
    font-family: 'Bangers', cursive;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transform: skew(-3deg); /* Increased skew to match Power Roll boxes */
    transition: all 0.3s ease;
    box-shadow: 
        0 0 10px rgba(255, 0, 64, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.2);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.nav-menu a[href="#power-roll"]:hover {
    color: #ffffff !important;
    transform: translateY(-2px) skew(-3deg); /* Maintained skew on hover */
    border-color: #ff0040; /* All borders turn bright pink on hover */
    border-left-color: #ff0040; /* Left border stays bright pink */
    box-shadow: 
        0 0 20px rgba(255, 0, 64, 0.6),
        0 4px 15px rgba(0, 0, 0, 0.3);
    text-shadow: 
        1px 1px 2px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(255, 0, 64, 0.8);
}

.nav-cta {
    margin-left: 1rem;
}

.nav-button {
    background: linear-gradient(45deg, #8b4557, #6d3544);
    color: white !important;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(139, 69, 87, 0.3);
}

.nav-button:hover {
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 69, 87, 0.4);
}

/* Mobile Buy Button - Hidden on desktop */
.nav-mobile-cta {
    display: none;
}

.mobile-buy-btn {
    background: linear-gradient(45deg, #8b4557, #6d3544);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(139, 69, 87, 0.3);
    border: 2px solid transparent;
}

.mobile-buy-btn:hover {
    background: linear-gradient(45deg, #6d3544, #8b4557);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 69, 87, 0.4);
}

/* Limited Edition Notice Bar */
.limited-edition-bar {
    position: fixed;
    top: 82px; /* Reduced gap - touching navbar */
    left: 0;
    width: 100%;
    background: #05ce78;
    color: white;
    z-index: 999;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* Smoother, longer transition */
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(5, 206, 120, 0.3);
}

.limited-edition-bar.scrolled {
    height: 4px !important;
    top: 82px; /* Adjusted to maintain contact */
}

.limited-edition-bar.scrolled .limited-edition-content {
    opacity: 0;
    transform: translateY(-120%); /* More dramatic slide up */
}

.limited-edition-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* Smoother, longer transition */
    transform: translateY(0);
    opacity: 1;
}

.limited-edition-text {
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.limited-edition-subtext {
    font-weight: 400;
    opacity: 0.9;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f6f3 0%, #ede7e0 50%, #f8f6f3 100%);
    background-image: 
        linear-gradient(rgba(139, 69, 87, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 69, 87, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 140px; /* Increased padding to account for navbar + limited edition bar */
    padding-bottom: 30px;
    color: #4a4a4a;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(1px);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-text {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(139, 69, 87, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title-container {
    margin-bottom: 1rem;
}

.hero-title {
    font-family: 'Rubik Marker Hatch', cursive;
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.1;
    background: linear-gradient(45deg, #8b4557, #c8899a, #8b4557);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    letter-spacing: 1px;
    margin-bottom: 0;
}

.hero-title-subtitle {
    position: relative;
    top: -10px;
    font-family: 'Kalam', cursive;
    font-size: 1.5rem;
    font-weight: 400;
    color: #8b4557;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
}

.sales-badge {
    display: block;
    background: #8b4557;
    color: white;
    font-family: 'Caveat Brush', cursive;
    font-size: 1.2rem;
    padding: 0.3rem 1rem;
    border-radius: 4px;
    margin: 0 auto 1.5rem;
    transform: rotate(-2deg);
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    position: relative;
    animation: pulse 2s infinite;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
    text-align: center;
}

@keyframes pulse {
    0% { transform: rotate(-2deg) scale(1); }
    50% { transform: rotate(-2deg) scale(1.05); }
    100% { transform: rotate(-2deg) scale(1); }
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    justify-content: space-around;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(139, 69, 87, 0.2);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.05);
}

/* Hero Gift Highlight */
.hero-gift-highlight {
    margin-top: 2rem;
    padding: 1rem 0;
    background: rgba(139, 69, 87, 0.9);
    position: relative;
    z-index: 5;
    width: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.gift-highlight-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Kalam', cursive;
    text-align: center;
    padding: 0.5rem;
}

.gift-highlight-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.gift-highlight-icon {
    font-size: 2rem;
    animation: pulse 2s infinite;
}

.gift-highlight-link {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-weight: bold;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.gift-highlight-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Adjust the neon button size in gift highlight */
.gift-highlight-content .btn-neon {
    font-size: 1rem;
    padding: 0.5rem 1rem;
}

/* Action Shots in Hero Section */
.hero-action-shots {
    margin-top: 0;
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 100%;
    clip-path: polygon(0 5%, 100% 0%, 100% 95%, 0% 100%);
}

.section-subtitle {
    text-align: center;
    font-family: 'Cabin Sketch', cursive;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #8b4557;
}

.action-shots-wrapper {
    padding: 0 1rem;
}

/* Desktop View */
.action-shots-desktop {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.action-shot {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(139, 69, 87, 0.2);
    transition: transform 0.3s ease;
    position: relative;
}

.action-shot:hover {
    transform: translateY(-5px);
}

.action-img {
    width: 100%;
    height: 180px; /* Reduced height to fit better on initial screen */
    object-fit: cover;
    display: block;
}

/* Mobile Slideshow View */
.action-shots-mobile {
    display: none;
}

.slideshow-container {
    position: relative;
    margin: 0 auto;
    max-width: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(139, 69, 87, 0.2);
}

.action-slide {
    display: none;
}

.action-slide.active {
    display: block;
}

.slide-img {
    width: 100%;
    height: 180px; /* Reduced height to fit better on initial screen */
    object-fit: cover;
    display: block;
}

.dots-container {
    text-align: center;
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.8);
    position: absolute;
    bottom: 0;
    width: 100%;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: rgba(139, 69, 87, 0.3);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #8b4557;
}

/* Fade Animation */
.fade {
    animation-name: fade;
    animation-duration: 1s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

/* Mobile hero image - hidden on desktop */
.hero-image-mobile {
    display: none;
    margin: 1.5rem 0;
    text-align: center;
}

.hero-image-mobile img {
    max-width: 80%;
    margin: 0 auto;
}

/* Mobile kickstarter - hidden on desktop */
.kickstarter-mobile {
    display: none;
    margin-top: 1.5rem;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Kickstarter Success Section */
.kickstarter-section {
    padding: 2rem 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.8), rgba(237, 231, 224, 0.8), rgba(255, 255, 255, 0.8));
    border-top: 1px solid rgba(139, 69, 87, 0.1);
    border-bottom: 1px solid rgba(139, 69, 87, 0.1);
}

/* Hero specific kickstarter */
.kickstarter-hero {
    width: 100%;
    max-width: 400px;
    margin-top: 1.5rem;
    transform: scale(0.9);
    border-top: 3px solid #05ce78;
}

.kickstarter-success {
    width: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.85));
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    box-shadow: 0 10px 20px rgba(139, 69, 87, 0.15);
    border-top: 4px solid #05ce78;
    position: relative;
    z-index: 5;
    overflow: hidden;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.ks-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 100%;
}

.ks-icon {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.ks-stats {
    flex-grow: 1;
}

.ks-stats h3 {
    font-family: 'Cabin Sketch', cursive;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #8b4557;
}

.ks-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ks-numbers {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0;
}

.ks-stat {
    display: flex;
    flex-direction: column;
}

.ks-value {
    font-weight: 700;
    font-size: 1.2rem;    
    font-family: 'Rubik Marker Hatch', cursive !important;
    color: #05ce78 !important;
}

.ks-label {
    font-size: 0.9rem;
    color: #666;
}

.ks-link {
    display: inline-block;
    background: #05ce78;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 1rem;
    white-space: nowrap;
}

.ks-link:hover {
    background: #04b76c;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(5, 206, 120, 0.3);
}

/* Kickstarter Campaign Button */
.ks-campaign-btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    border: none;
    font-family: 'Rubik Marker Hatch', cursive;
    clear: both;
}

.ks-campaign-btn:hover {
    background: linear-gradient(135deg, #ff5252, #ff7043);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    color: white;
}

/* Hero Card Rows */
.hero-cards {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
}

.card-row {
    width: 100%;
    opacity: 0.25;
    transition: opacity 0.3s ease;
}

.card-row:hover {
    opacity: 0.5;
}

.card-row-1 {
    margin-top: 100px;
    animation: slideRightPingPong 50s linear infinite alternate;
}

.card-row-2 {
    animation: slideLeftPingPong 55s linear infinite alternate;
    margin: 50px 0;
}

.card-row-3 {
    margin-bottom: 50px;
    animation: slideRightPingPong 60s linear infinite alternate;
}

.cards-horizontal {
    width: 150%;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(139, 69, 87, 0.2)) blur(2px);
}

@keyframes slideRightPingPong {
    0% {
        transform: translateX(-25%);
    }
    100% {
        transform: translateX(0%);
    }
}

@keyframes slideLeftPingPong {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-25%);
    }
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Kalam', cursive;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(45deg, #8b4557, #6d3544);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 69, 87, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 69, 87, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #8b4557;
    border: 2px solid #8b4557;
}

.btn-secondary:hover {
    background: #8b4557;
    color: white;
}

/* Neon 20% Off Button */
.btn-neon {
    background: linear-gradient(45deg, #ff3a4c, #ff7b69);
    color: white;
    border: 2px solid transparent;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Patrick Hand', cursive;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 0 20px rgba(255, 58, 76, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-neon:hover::before {
    left: 100%;
}

.btn-neon:hover {
    background: linear-gradient(45deg, #ff7b69, #ff3a4c);
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(255, 58, 76, 0.6);
    color: white;
    text-decoration: none;
}

.btn-primary.large {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
}

/* Features Section */
.features {
    padding: 7rem 0 5rem;
    margin-top: 7rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    position: relative;
    clip-path: polygon(0 5%, 100% 0%, 100% 100%, 0% 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(139, 69, 87, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(139, 69, 87, 0.1);
    color: #4a4a4a;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #8b4557;
}

/* How It Works */
.how-it-works {
    padding: 8rem 0 6rem;
    margin-top: -3rem;
    background: rgba(237, 231, 224, 0.7);
    backdrop-filter: blur(5px);
    color: #4a4a4a;
    position: relative;
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
    z-index: 2;
}

.how-it-works-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.step-number {
    background: linear-gradient(45deg, #8b4557, #6d3544);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(139, 69, 87, 0.3);
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: #8b4557;
}

.demo-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(139, 69, 87, 0.15);
}

/* Game Modes */
.game-modes {
    padding: 8rem 0 6rem;
    margin-top: -3rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    color: #4a4a4a;
    position: relative;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    z-index: 3;
}

.modes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mode-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(139, 69, 87, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 69, 87, 0.1);
    color: #4a4a4a;
}

.mode-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 69, 87, 0.4);
    box-shadow: 0 12px 30px rgba(139, 69, 87, 0.15);
}

.mode-card.featured {
    background: 
        linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(20,35,50,0.9) 50%, rgba(0,0,0,0.8) 100%);
    border: 2px solid #ff0040;
    border-left: 6px solid #ff0040;
    color: white;
    transform: skew(-1deg);
    box-shadow: 
        0 0 20px rgba(255, 0, 64, 0.4),
        inset 0 1px 0 rgba(255,255,255,0.1),
        0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.mode-card.featured::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 15px,
            rgba(255, 0, 64, 0.08) 15px,
            rgba(255, 0, 64, 0.08) 16px
        );
    pointer-events: none;
}

.mode-card.featured:hover {
    border-color: #ff0040;
    box-shadow: 
        0 0 30px rgba(255, 0, 64, 0.6),
        inset 0 1px 0 rgba(255,255,255,0.1),
        0 15px 40px rgba(0, 0, 0, 0.4);
    transform: skew(-1deg) translateY(-3px);
}

.mode-card.featured h3 {
    color: #ff0040;
    text-shadow: 
        2px 2px 0px #000000,
        -1px -1px 0px #000000,
        1px -1px 0px #000000,
        -1px 1px 0px #000000,
        0 0 15px rgba(255, 0, 64, 0.8);
    font-family: 'Bangers', cursive;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: skew(1deg);
}

.mode-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.mode-card ul {
    list-style: none;
    margin-top: 1rem;
}

.mode-card li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.mode-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8b4557;
    font-weight: bold;
}

.mode-card.featured li:before {
    color: #ff0040;
    text-shadow: 
        1px 1px 0px #000000,
        0 0 8px rgba(255, 0, 64, 0.6);
    font-weight: bold;
}

.mode-card.featured li {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    transform: skew(1deg);
}

.mode-card.featured p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    transform: skew(1deg);
}

.mode-learn-more {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

/* Power Roll Section */
.power-roll {
    padding: 8rem 0 6rem;
    margin-top: -3rem;
    background: 
        linear-gradient(45deg, transparent 25%, rgba(0,0,0,0.1) 25%, rgba(0,0,0,0.1) 50%, transparent 50%, transparent 75%, rgba(0,0,0,0.1) 75%),
        linear-gradient(135deg, #0f1419 0%, #1a2332 30%, #2c3e50 70%, #34495e 100%);
    background-size: 20px 20px, 100% 100%;
    color: white;
    position: relative;
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
    z-index: 4;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.5);
}

.power-roll .section-title {
    color: #ff0040;
    text-shadow: 
        3px 3px 0px #000000,
        -1px -1px 0px #000000,
        1px -1px 0px #000000,
        -1px 1px 0px #000000,
        0 0 15px rgba(255, 0, 64, 0.8);
    background: 
        linear-gradient(45deg, #000000 0%, #1a1a1a  50%, #000000 100%);
    padding: 0.8rem 2.5rem;
    border-radius: 0px;
    border: 3px solid #ff0040;
    border-left: 8px solid #ff0040;
    display: inline-block;
    box-shadow: 
        0 0 20px rgba(255, 0, 64, 0.6),
        inset 0 1px 0 rgba(255,255,255,0.1);
    transform: rotate(-2deg) skew(-5deg);
    margin-bottom: 4rem;
    font-family: 'Bangers', cursive;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.power-roll .section-title::after {
    content: "";
    position: absolute;
    bottom: -1rem;
    left: 5%;
    width: 90%;
    height: 4px;
    background: linear-gradient(90deg, #ff0040, #8b0000, #ff0040);
    transform: rotate(1deg) skew(2deg);
    box-shadow: 0 0 10px rgba(255, 0, 64, 0.8);
}

.power-roll-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.power-roll-text {
    background: 
        linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(20,35,50,0.9) 50%, rgba(0,0,0,0.8) 100%);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 0px;
    border: 2px solid #ff0040;
    border-left: 6px solid #ff0040;
    box-shadow: 
        0 0 30px rgba(255, 0, 64, 0.4),
        inset 0 1px 0 rgba(255,255,255,0.1),
        0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    transform: skew(-2deg);
}

.power-roll-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 0, 64, 0.1) 10px,
            rgba(255, 0, 64, 0.1) 11px
        );
    pointer-events: none;
}

.power-roll-gallery {
    display: block;
}

.power-main-image {
    text-align: center;
    margin-bottom: 2rem;
}

.power-main-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 0px;
    border: 3px solid #ff0040;
    box-shadow: 
        0 0 25px rgba(255, 0, 64, 0.6),
        0 12px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    transform: skew(-2deg);
}

.power-main-img:hover {
    transform: translateY(-5px) skew(-2deg);
    box-shadow: 
        0 0 35px rgba(255, 0, 64, 0.8),
        0 15px 40px rgba(0, 0, 0, 0.6);
    border-color: #ffffff;
}

.power-gallery-grid {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
    align-items: stretch;
}

.power-img {
    flex: 1;
    height: 200px;
    object-fit: cover;
    border-radius: 0px;
    border: 2px solid #ff0040;
    box-shadow: 
        0 0 15px rgba(255, 0, 64, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    transform: skew(-1deg);
}

.power-img:hover {
    transform: translateY(-3px) skew(-1deg);
    box-shadow: 
        0 0 25px rgba(255, 0, 64, 0.6),
        0 12px 30px rgba(0, 0, 0, 0.4);
    border-color: #ffffff;
}

.power-roll-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #ff0040;
    text-shadow: 
        2px 2px 0px #000000,
        -1px -1px 0px #000000,
        1px -1px 0px #000000,
        -1px 1px 0px #000000,
        0 0 20px rgba(255, 0, 64, 0.8);
    font-family: 'Bangers', cursive;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: skew(2deg);
}

.power-roll-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    transform: skew(2deg);
}

.power-roll-highlight {
    background: 
        linear-gradient(135deg, rgba(255, 0, 64, 0.2) 0%, rgba(255, 0, 64, 0.1) 100%);
    color: #ffffff;
    padding: 1.2rem 1.5rem;
    border-radius: 0px;
    border: 2px solid #ff0040;
    border-left: 5px solid #ff0040;
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    box-shadow: 
        0 0 15px rgba(255, 0, 64, 0.3),
        inset 0 1px 0 rgba(255,255,255,0.1);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    transform: skew(1deg);
    position: relative;
}

.power-roll-highlight::before {
    content: "💥";
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px rgba(255, 0, 64, 0.8));
}

.power-roll-note {
    background: 
        linear-gradient(135deg, rgba(44, 62, 80, 0.4) 0%, rgba(52, 73, 94, 0.5) 100%);
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 0px;
    border: 2px solid #ff0040;
    border-left: 6px solid #ff0040;
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 
        0 0 20px rgba(255, 0, 64, 0.4),
        inset 0 1px 0 rgba(255,255,255,0.1);
    text-shadow: 
        2px 2px 0px #000000,
        0 0 10px rgba(255, 0, 64, 0.8);
    font-family: 'Bangers', cursive;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: skew(2deg);
}

.power-roll-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.power-feature {
    background: 
        linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(20,35,50,0.8) 50%, rgba(0,0,0,0.7) 100%);
    padding: 1.8rem;
    border-radius: 0px;
    border: 2px solid #2c3e50;
    border-left: 4px solid #ff0040;
    backdrop-filter: blur(12px);
    box-shadow: 
        0 0 15px rgba(255, 0, 64, 0.3),
        inset 0 1px 0 rgba(255,255,255,0.1),
        0 4px 15px rgba(0, 0, 0, 0.4);
    transform: skew(-1deg);
    transition: all 0.3s ease;
}

.power-feature:hover {
    border-color: #ff0040;
    box-shadow: 
        0 0 25px rgba(255, 0, 64, 0.6),
        inset 0 1px 0 rgba(255,255,255,0.1),
        0 4px 20px rgba(0, 0, 0, 0.5);
    transform: skew(-1deg) translateY(-2px);
}

.power-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #ff0040;
    text-shadow: 
        1px 1px 0px #000000,
        0 0 10px rgba(255, 0, 64, 0.6);
    font-family: 'Bangers', cursive;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: skew(1deg);
}

.power-feature p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    transform: skew(1deg);
}

.power-roll-gallery {
    display: block;
    width: 100%;
}

.power-main-image {
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
}

.power-main-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.power-main-img:hover {
    transform: translateY(-5px);
}

.power-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
}

.power-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.power-img:hover {
    transform: scale(1.05);
}

/* Gallery */
.gallery {
    padding: 8rem 0 6rem;
    margin-top: -3rem;
    background: rgba(237, 231, 224, 0.8);
    backdrop-filter: blur(5px);
    color: #4a4a4a;
    position: relative;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    z-index: 5;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

/* Perfect Gift Section */
.perfect-gift {
    padding: 8rem 0 6rem;
    margin-top: -3rem;
    background: linear-gradient(45deg, rgba(139, 69, 87, 0.1), rgba(139, 69, 87, 0.05), rgba(139, 69, 87, 0.1));
    backdrop-filter: blur(5px);
    position: relative;
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
    z-index: 6;
}

.gift-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.gift-text {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(139, 69, 87, 0.15);
    border: 1px solid rgba(139, 69, 87, 0.1);
}

.gift-description p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.gift-features {
    list-style: none;
    margin: 2rem 0;
}

.gift-features li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
}

.gift-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    background: rgba(139, 69, 87, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gift-cta {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: space-around;
}

.gift-image {
    position: relative;
    text-align: center;
}

.gift-img {
    width: 100%;
    max-width: 350px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(139, 69, 87, 0.25);
    transform: rotate(3deg);
    border: 10px solid white;
}

.gift-badge {
    position: absolute;
    bottom: -10px;
    right: 40px;
    background: #8b4557;
    color: white;
    font-family: 'Caveat Brush', cursive;
    font-size: 1.1rem;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    transform: rotate(-3deg);
    box-shadow: 3px 3px 8px rgba(0,0,0,0.2);
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
}

/* Tablet responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .purchase-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .purchase-card.gb-deck {
        grid-column: 1 / -1; /* Span full width on tablet */
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .gift-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .gift-features li {
        justify-content: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .gift-image {
        margin-top: 2rem;
    }
    
    .gift-img {
        max-width: 280px;
    }
    
    .gift-badge {
        right: 50%;
        transform: translateX(50%) rotate(-3deg);
    }
}

/* Future Section */
.future {
    padding: 8rem 0 6rem;
    margin-top: -3rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    position: relative;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    z-index: 7;
}

/* Subscribe Section */
.subscribe {
    padding: 8rem 0 6rem;
    margin-top: -3rem;
    background: linear-gradient(135deg, #1a365d 0%, #2a4a73 50%, #1a365d 100%);
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    color: white;
    position: relative;
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
    z-index: 8;
}

.future-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #666;
}

.future-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.future-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(139, 69, 87, 0.1);
    border-left: 5px solid #8b4557;
    color: #4a4a4a;
}

.future-item h3 {
    color: #8b4557;
    margin-bottom: 1rem;
}

/* Subscribe Section */
.subscribe {
    padding: 8rem 0 6rem;
    margin-top: -3rem;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 50%, #111111 100%);
    position: relative;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    z-index: 8;
    color: white;
}

.subscribe::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 60, 60, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 60, 60, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -1;
}

.discount-content h2 {
    color: #ff3a4c;
    text-shadow: 1px 1px 5px rgba(255, 58, 76, 0.3);
    margin-bottom: 1.5rem;
}

.discount-content {
    background: rgba(20, 20, 20, 0.7);
    border: 1px solid rgba(255, 60, 60, 0.2);
}

.discount-badge {
    background: linear-gradient(45deg, #ff3a4c, #ff7b69);
    box-shadow: 0 5px 15px rgba(255, 58, 76, 0.4);
}

.subscribe-form-container {
    background: rgba(20, 20, 20, 0.7);
    border: 1px solid rgba(255, 60, 60, 0.2);
}

.subscribe-btn {
    background: linear-gradient(45deg, #ff3a4c, #ff7b69);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 58, 76, 0.4);
    border: none;
}

.subscribe-btn:hover {
    background: linear-gradient(45deg, #ff7b69, #ff3a4c);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 58, 76, 0.5);
}

/* CTA Section */
.cta {
    padding: 8rem 0 6rem;
    margin-top: -3rem;
    background: linear-gradient(135deg, #f8f6f3 0%, #ede7e0 50%, #f8f6f3 100%);
    background-image: 
        linear-gradient(rgba(139, 69, 87, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 69, 87, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    color: #4a4a4a;
    text-align: center;
    position: relative;
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 100%);
    z-index: 9;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* Subscribe Section Styles */
.discount-banner {
    text-align: center;
    margin-bottom: 3rem;
}

.discount-content {
    position: relative;
    display: inline-block;
    padding: 2rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.discount-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #ff3a4c;
    color: white;
    font-family: 'Cabin Sketch', cursive;
    font-size: 1.5rem;
    padding: 0.8rem;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(12deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-weight: bold;
}

.discount-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.discount-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.subscribe-form-container {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.subscribe .form-control {
    width: 100%;
    padding: 0.8rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-family: 'Patrick Hand', cursive;
    font-size: 1.1rem;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.subscribe .form-control:focus {
    outline: none;
    border-color: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.subscribe .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.subscribe-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    background: linear-gradient(45deg, #ff3a4c, #ff7b69);
    border: none;
    cursor: pointer;
}

.subscribe-btn:hover {
    background: linear-gradient(45deg, #ff7b69, #ff3a4c);
    transform: translateY(-3px);
}

/* Brevo form specific styles to maintain our design */
#sib-container {
    background: transparent !important;
    border: none !important;
    max-width: 100% !important;
}

.subscribe-form-inner {
    background: transparent !important;
    text-align: left !important;
}

.entry__label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Patrick Hand', cursive;
    font-size: 1rem;
    color: white !important;
    text-align: left !important;
    font-weight: normal !important;
}

.form-message {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    padding: 1rem !important;
    border-radius: 10px !important;
    margin-bottom: 1rem !important;
    text-align: center !important;
}

.form-message-error {
    background: rgba(255, 61, 61, 0.2) !important;
    border-color: rgba(255, 61, 61, 0.5) !important;
}

.form-message-success {
    background: rgba(66, 230, 149, 0.2) !important;
    border-color: rgba(66, 230, 149, 0.5) !important;
}

.message-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

/* Additional Brevo form styling */
.sib-form {
    background: transparent !important;
    padding: 0 !important;
}

.sib-form-container {
    background: transparent !important;
}

.sib-container--large {
    background: transparent !important;
    border: none !important;
    max-width: 100% !important;
    text-align: left !important;
    direction: ltr !important;
}

.sib-form-message-panel {
    background: rgba(255, 61, 61, 0.2) !important;
    border: 2px solid rgba(255, 61, 61, 0.5) !important;
    border-radius: 10px !important;
    padding: 1rem !important;
    margin-bottom: 1rem !important;
    text-align: center !important;
    color: white !important;
    font-size: 16px !important;
    font-family: 'Patrick Hand', cursive !important;
}

.sib-form-message-panel:last-of-type {
    background: rgba(66, 230, 149, 0.2) !important;
    border-color: rgba(66, 230, 149, 0.5) !important;
}

.sib-form-message-panel__text {
    text-align: center !important;
}

.sib-form-message-panel__inner-text {
    color: white !important;
}

.form__label-row {
    display: flex;
    flex-direction: column;
}

.entry__field {
    width: 100%;
}

.entry__error {
    color: rgba(255, 61, 61, 0.8) !important;
    background: transparent !important;
    padding: 0.5rem 0;
    display: block;
}

.entry__specification {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.8rem !important;
    margin-top: 0.5rem;
    font-family: 'Patrick Hand', cursive !important;
}

.sib-form-block__button {
    color: white !important;
    background: linear-gradient(45deg, #ff3a4c, #ff7b69) !important;
    border-radius: 50px !important;
    font-family: 'Patrick Hand', cursive !important;
    font-size: 1.1rem !important;
    padding: 1rem !important;
    transition: all 0.3s ease;
    border: none !important;
    width: 100%;
    cursor: pointer;
}

.sib-form-block__button:hover {
    background: linear-gradient(45deg, #ff7b69, #ff3a4c) !important;
    transform: translateY(-3px);
}

.sib-icon {
    fill: currentColor;
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.input--hidden {
    display: none !important;
}

.input {
    color: #333 !important;
    font-family: 'Rubik Marker Hatch' !important;
}

.privacy-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.purchase-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.purchase-image {
    margin-bottom: 1.5rem;
}

.product-box-img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.product-box-img:hover {
    transform: translateY(-3px);
}

.purchase-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(139, 69, 87, 0.15);
    border: 2px solid rgba(139, 69, 87, 0.2);
    transition: all 0.3s ease;
}

.purchase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(139, 69, 87, 0.2);
}

.purchase-card.featured {
    background: 
        linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(20,35,50,0.9) 50%, rgba(0,0,0,0.8) 100%);
    border: 2px solid #ff0040;
    border-left: 6px solid #ff0040;
    color: white;
    transform: scale(1.05) skew(-1deg);
    box-shadow: 
        0 0 25px rgba(255, 0, 64, 0.5),
        inset 0 1px 0 rgba(255,255,255,0.1),
        0 15px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.purchase-card.featured::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 15px,
            rgba(255, 0, 64, 0.08) 15px,
            rgba(255, 0, 64, 0.08) 16px
        );
    pointer-events: none;
    z-index: 1;
}

.purchase-card.featured:hover {
    transform: scale(1.05) skew(-1deg) translateY(-5px);
    box-shadow: 
        0 0 35px rgba(255, 0, 64, 0.7),
        inset 0 1px 0 rgba(255,255,255,0.1),
        0 20px 50px rgba(0, 0, 0, 0.4);
}

/* GB Deck special styling */
.purchase-card.gb-deck {
    border-color: #9bbc0f;
    background: #0f380f; /* Dark Game Boy green background */
    position: relative;
    overflow: hidden;
    font-family: 'Press Start 2P', monospace; /* Pixel font */
}

.purchase-card.gb-deck::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(155, 188, 15, 0.1) 10px,
        rgba(155, 188, 15, 0.1) 20px
    );
    animation: gb-pattern 20s linear infinite;
}

@keyframes gb-pattern {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.purchase-card.gb-deck:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(155, 188, 15, 0.4);
}

.purchase-card.gb-deck h3 {
    color: #9bbc0f;
    position: relative;
    z-index: 1;
    font-family: 'Press Start 2P', monospace;
    font-size: 1rem; /* Smaller for pixel font readability */
    line-height: 1.4;
}

.purchase-card.gb-deck p,
.purchase-card.gb-deck .price {
    position: relative;
    z-index: 1;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.7rem; /* Smaller for pixel font readability */
    line-height: 1.6;
    color: #8fbc0f;
}

/* GB Button styling */
.btn-gb {
    background: linear-gradient(135deg, #9bbc0f, #8fbc0f);
    color: #306230;
    border: 2px solid #8fbc0f;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Patrick Hand', cursive;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(155, 188, 15, 0.3);
    position: relative;
    z-index: 1;
}

.btn-gb:hover {
    background: linear-gradient(135deg, #8fbc0f, #7ba60f);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(155, 188, 15, 0.4);
    color: #306230;
    text-decoration: none;
}

.purchase-card h3 {
    color: #8b4557;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.purchase-card.featured h3 {
    color: #ff0040;
    text-shadow: 
        2px 2px 0px #000000,
        -1px -1px 0px #000000,
        1px -1px 0px #000000,
        -1px 1px 0px #000000,
        0 0 15px rgba(255, 0, 64, 0.8);
    font-family: 'Bangers', cursive;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: skew(1deg);
    position: relative;
    z-index: 2;
}

.purchase-card.featured p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    transform: skew(1deg);
    position: relative;
    z-index: 2;
}

.purchase-card p {
    margin-bottom: 1rem;
    opacity: 1;
    font-size: 1rem;
}

.price {
    font-weight: 600;
    color: #666;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.purchase-card.featured .price {
    color: #ff0040;
    font-weight: 700;
    text-shadow: 
        1px 1px 0px #000000,
        0 0 10px rgba(255, 0, 64, 0.6);
    font-family: 'Bangers', cursive;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: skew(1deg);
    position: relative;
    z-index: 2;
}

/* Pink punk button for featured Power Roll card */
.purchase-card.featured .btn-primary {
    background: linear-gradient(135deg, #ff0040, #cc0030);
    border: 2px solid #ff0040;
    color: white;
    text-shadow: 
        1px 1px 0px #000000,
        0 0 8px rgba(255, 0, 64, 0.6);
    font-family: 'Bangers', cursive;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: skew(-1deg);
    box-shadow: 
        0 0 15px rgba(255, 0, 64, 0.4),
        inset 0 1px 0 rgba(255,255,255,0.2);
    position: relative;
    z-index: 2;
}

.purchase-card.featured .btn-primary:hover {
    background: linear-gradient(135deg, #cc0030, #ff0040);
    transform: skew(-1deg) translateY(-2px);
    box-shadow: 
        0 0 25px rgba(255, 0, 64, 0.7),
        inset 0 1px 0 rgba(255,255,255,0.2),
        0 6px 20px rgba(255, 0, 64, 0.4);
}

/* Footer */
.footer {
    background: rgba(139, 69, 87, 0.95);
    color: white;
    padding: 3rem 0 1rem;
    border-top: 2px solid rgba(139, 69, 87, 0.8);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1rem;
    color: #f8c8d4;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #d4af37;
}

.highlight-link {
    color: #f8c8d4 !important;
    font-weight: 600;
    text-decoration: underline !important;
    transition: all 0.3s ease;
}

.highlight-link:hover {
    color: #ffeb99 !important;
    text-decoration-thickness: 2px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero {
        padding-bottom: 20px;
    }
    
    .hero-title-container {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-title-subtitle {
        font-size: 1.2rem;
        text-align: center;
        margin-left: 0;
        padding: 0.2rem 0.8rem;
        margin: 0.3rem auto 0;
    }
    
    .logo-container {
        align-items: center;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
        padding: 0.05rem 0.4rem;
    }
    
    /* Show mobile hero image and hide desktop version */
    .hero-image {
        display: none;
    }
    
    .hero-image-mobile {
        display: block;
        margin: 1.5rem auto;
    }
    
    /* Show mobile Kickstarter and hide desktop version */
    .kickstarter-hero {
        display: none !important;
    }
    
    .kickstarter-mobile {
        display: block;
        margin: 2rem auto;
        transform: scale(1);
    }
    
    .card-row {
        opacity: 0.15;
    }
    
    .cards-horizontal {
        width: 200%;
    }
    
    .how-it-works-content {
        grid-template-columns: 1fr;
    }
    
    .power-roll-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .power-roll-features {
        grid-template-columns: 1fr;
    }
    
    .purchase-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .purchase-card.featured {
        transform: none;
    }
    
    .purchase-card.gb-deck {
        order: 3; /* Ensure GB Deck appears last on mobile */
    }
    
    .nav-menu {
        display: none;
    }
    
    /* Show mobile buy button */
    .nav-mobile-cta {
        display: block;
    }
    
    /* Update nav container to flex for mobile */
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    /* Limited Edition Bar Mobile Styles */
    .limited-edition-bar {
        top: 80px; /* Adjusted for smaller mobile navbar - touching */
    }

.limited-edition-bar.scrolled {
    height: 4px !important;
    top: 80px; /* Adjusted to maintain contact */
}
    
    .limited-edition-content {
        padding: 0.4rem 15px;
    }
    
    .limited-edition-text {
        font-size: 0.85rem;
        flex-direction: column;
        gap: 0.2rem;
    }
    
    .limited-edition-subtext {
        font-size: 0.8rem;
    }
    
    .nav-cta {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 200px;
        text-align: center;
    }
    
    .kickstarter-success {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem;
        margin: 0 0.5rem;
        max-width: calc(100vw - 1rem);
        box-sizing: border-box;
    }
    
    .ks-content {
        flex-direction: column;
        width: 100%;
    }
    
    .ks-numbers {
        justify-content: center;
        margin-bottom: 1rem;
        flex-wrap: wrap;
        gap: 0.8rem;
    }
    
    .ks-stat {
        min-width: 60px;
        text-align: center;
    }
    
    .ks-value {
        font-size: 1rem !important;
        white-space: nowrap;
    }
    
    .ks-label {
        font-size: 0.8rem;
        white-space: nowrap;
    }
    
    .ks-stats h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .ks-icon {
        height: 60px;
        width: auto;
    }
    
    .ks-link {
        margin-left: 0;
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .kickstarter-section {
        padding: 1.5rem 0;
    }
    
    .hero-text {
        padding: 1.5rem;
    }
    
    .hero-description {
        margin-top: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-action-shots {
        margin-top: 1rem;
        padding: 1rem 0;
    }
    
    .section-subtitle {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    /* Switch from desktop row to mobile vertical stack */
    .action-shots-desktop {
        display: none;
    }
    
    .action-shots-mobile {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin: 1rem auto;
        max-width: 100%;
    }
    
    .action-shots-mobile .action-shot {
        width: 100%;
        max-width: 100%;
    }
    
    .action-shots-mobile .action-img {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: cover;
        border-radius: 8px;
    }
    
    .card-row-1 {
        margin-top: 80px;
    }
    
    .card-row-2 {
        margin: 30px 0;
    }
    
    .card-row-3 {
        margin-bottom: 30px;
    }
    
    /* Gift highlight mobile improvements */
    .gift-highlight-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1rem 0.5rem;
    }
    
    .gift-highlight-content p {
        font-size: 1rem;
        margin: 0;
        line-height: 1.3;
    }
    
    .gift-highlight-actions {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }
    
    .gift-highlight-link,
    .gift-highlight-content .btn-neon {
        width: auto;
        max-width: 200px;
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
        white-space: nowrap;
    }
    
    .hero-gift-highlight {
        margin-top: 1.5rem;
        padding: 1.5rem 0;
    }
    
    /* Give more space before features section on mobile */
    .features {
        margin-top: 1500px;
        padding-top: 8rem;
    }
    
    /* Power Roll Gallery Mobile Styles */
    .power-gallery-grid {
        flex-direction: column;
        max-width: 300px;
        gap: 1rem;
    }
    
    .power-img {
        height: 180px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card, .mode-card, .future-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Extra small screens (phones in portrait) */
@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
        max-width: 100%;
    }
    
    .kickstarter-success {
        padding: 0.8rem;
        margin: 0 0.25rem;
        max-width: calc(100vw - 0.5rem);
    }
    
    .ks-numbers {
        gap: 0.5rem;
    }
    
    .ks-stat {
        min-width: 50px;
    }
    
    .ks-value {
        font-size: 0.9rem !important;
    }
    
    .ks-label {
        font-size: 0.7rem;
    }
    
    .ks-stats h3 {
        font-size: 1rem;
    }
    
    .ks-icon {
        height: 50px;
    }
    
    .ks-link {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
    
    /* Ensure all content respects viewport width */
    * {
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
}

/* Lightbox Styles */
.lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #ff6b35;
    text-decoration: none;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 60px;
    font-weight: bold;
    cursor: pointer;
    padding: 20px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 10001;
    backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
    background: rgba(255, 107, 53, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

#lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Add hover effect to clickable images */
.lightbox-trigger {
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.lightbox-trigger:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

/* Mobile lightbox adjustments */
@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
    
    .lightbox-nav {
        font-size: 40px;
        padding: 15px 10px;
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
    
    .lightbox-counter {
        bottom: 20px;
        font-size: 16px;
        padding: 8px 16px;
    }
    
    #lightbox-image {
        max-height: 85vh;
    }
    
    .lightbox-content {
        padding: 10px;
        width: 95%;
    }
}
