/* Unwind Page - Black & White Party Theme */

.unwind-main {
    background: #000000;
    min-height: 100vh;
    color: #ffffff;
    overflow-x: hidden;
}

/* Hero Section */
.unwind-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0 2rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="party" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23party)"/></svg>');
    opacity: 0.3;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 1px,
        rgba(255, 255, 255, 0.03) 1px,
        rgba(255, 255, 255, 0.03) 2px
    );
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    animation: floatEnhanced 12s ease-in-out infinite;
    filter: blur(1px);
}

.element-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 80px;
    height: 80px;
    top: 65%;
    right: 15%;
    animation-delay: 3s;
}

.element-3 {
    width: 100px;
    height: 100px;
    bottom: 25%;
    left: 65%;
    animation-delay: 6s;
}

.element-4 {
    width: 60px;
    height: 60px;
    top: 35%;
    right: 35%;
    animation-delay: 9s;
}

@keyframes floatEnhanced {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.08;
    }
    25% { 
        transform: translateY(-20px) translateX(-10px) scale(1.1);
        opacity: 0.15;
    }
    50% { 
        transform: translateY(-40px) translateX(10px) scale(1.2);
        opacity: 0.25;
    }
    75% { 
        transform: translateY(-20px) translateX(-5px) scale(1.1);
        opacity: 0.15;
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    margin-bottom: 3rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: #ffffff;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: glow 2s ease-in-out infinite alternate;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

@keyframes glow {
    from { box-shadow: 0 0 10px rgba(255, 255, 255, 0.2); }
    to { box-shadow: 0 0 20px rgba(255, 255, 255, 0.4), 0 0 30px rgba(255, 255, 255, 0.2); }
}

.page-title {
    margin-bottom: 4rem;
}

.title-main {
    display: block;
    font-size: clamp(4.5rem, 12vw, 9rem);
    font-weight: 900;
    line-height: 0.75;
    letter-spacing: -6px;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #ffffff 0%, #cccccc 30%, #ffffff 70%, #f0f0f0 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.4));
    text-shadow: none;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.title-sub {
    display: block;
    font-size: clamp(1.2rem, 3.5vw, 2rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 4rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Enhanced Quote Section */
.hero-quote-section {
    margin: 4rem 0 5rem;
    padding: 4rem 3rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 30px;
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.hero-quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    border-radius: 30px;
    z-index: -1;
}

.hero-quote-section::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.3) 0%, 
        transparent 25%, 
        transparent 75%, 
        rgba(255, 255, 255, 0.3) 100%);
    border-radius: 32px;
    z-index: -2;
    opacity: 0.6;
    animation: borderShimmer 3s ease-in-out infinite;
}

@keyframes borderShimmer {
    0%, 100% { 
        opacity: 0.4;
        filter: blur(1px);
    }
    50% { 
        opacity: 0.8;
        filter: blur(0px);
    }
}

.hero-quote {
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 2;
    line-height: 1.2;
}

.hero-quote em {
    font-style: italic;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 50%, #ffffff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: quoteGlow 3s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
}

@keyframes quoteGlow {
    0%, 100% { 
        background-position: 0% 50%;
        filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
    }
    50% { 
        background-position: 100% 50%;
        filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.6));
    }
}

.hero-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-intro p {
    font-size: clamp(1.2rem, 2.8vw, 1.6rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.8rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    font-weight: 400;
}

.hero-intro p:first-child {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-intro p:last-child {
    margin-bottom: 0;
    font-weight: 600;
}

.hero-intro strong {
    color: #ffffff;
    font-weight: 800;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced CTA Button */
.hero-cta {
    margin-top: 4rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem 3.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.5s ease;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(255, 255, 255, 0.1);
    min-width: 280px;
    justify-content: center;
}

.cta-btn::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.7s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 25px 70px rgba(255, 255, 255, 0.2);
    letter-spacing: 3px;
}

.cta-btn i {
    font-size: 1.1rem;
    transition: all 0.5s ease;
    flex-shrink: 0;
}

.cta-btn:hover i {
    transform: translateY(3px) rotate(90deg);
}

/* Events Section */
.events-section {
    padding: 8rem 0;
    background: #ffffff;
    color: #000000;
    position: relative;
}

.events-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f8f8f8 25%, transparent 25%, transparent 75%, #f8f8f8 75%), 
                linear-gradient(45deg, #f8f8f8 25%, transparent 25%, transparent 75%, #f8f8f8 75%);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0.3;
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    background: #000000;
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: #000000;
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: rgba(0, 0, 0, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.event-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    cursor: pointer;
    position: relative;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(0, 0, 0, 0.05) 50%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.event-card:hover::before {
    opacity: 1;
}

.event-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    border-color: #000000;
}

.event-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: grayscale(100%) contrast(1.2);
}

.event-card:hover .event-image img {
    transform: scale(1.1);
    filter: grayscale(0%) contrast(1);
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.event-card:hover .event-overlay {
    opacity: 1;
}

.event-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.event-content {
    padding: 2.5rem;
}

.event-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.event-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 1.5rem;
}

.event-details {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.8);
}

.detail-item i {
    color: #000000;
    width: 16px;
    text-align: center;
}

.event-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #000000;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.event-cta:hover {
    gap: 1.25rem;
}

.event-cta i {
    transition: transform 0.3s ease;
}

.event-cta:hover i {
    transform: translateX(5px);
}

/* Dress Code Section */
.dress-code-section {
    padding: 8rem 0;
    background: #000000;
    color: #ffffff;
    position: relative;
}

.dress-code-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.dress-code-section .section-badge {
    background: #ffffff;
    color: #000000;
}

.dress-code-section .section-title {
    color: #ffffff;
}

.dress-code-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.dress-code-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.dress-code-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.dress-code-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: rotate 10s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.dress-code-card:hover::before {
    opacity: 1;
}

.dress-code-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 30px 60px rgba(255, 255, 255, 0.1);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.dress-code-day {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.dress-code-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.dress-code-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.dress-code-details {
    text-align: left;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.dress-code-details ul {
    list-style: none;
    padding: 0;
}

.dress-code-details li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dress-code-details li:last-child {
    border-bottom: none;
}

.dress-code-details li::before {
    content: '✦';
    color: #ffffff;
    font-size: 0.8rem;
    opacity: 0.7;
}

.dress-inspiration {
    font-style: italic;
    font-size: 1.1rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
}

/* Atmosphere Section */
.atmosphere-section {
    padding: 8rem 0;
    background: #ffffff;
    color: #000000;
    position: relative;
    overflow: hidden;
}

.atmosphere-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="disco" width="10" height="10" patternUnits="userSpaceOnUse"><rect width="10" height="10" fill="white"/><circle cx="5" cy="5" r="1" fill="black" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23disco)"/></svg>');
    opacity: 0.3;
}

.atmosphere-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.atmosphere-content h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 4rem;
    letter-spacing: -2px;
}

.atmosphere-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    background: rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 3rem;
    color: #000000;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

.feature-item:hover i {
    transform: scale(1.2);
}

.feature-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-item p {
    opacity: 0.8;
    line-height: 1.6;
}

/* Event Modal */
.event-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.event-modal.active {
    visibility: visible;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: #ffffff;
    border-radius: 25px;
    padding: 3rem;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    transition: transform 0.4s ease;
    color: #000000;
}

.event-modal.active .modal-content {
    transform: translate(-50%, -50%) scale(1);
}

/* System Overview Section */
.system-overview {
    padding: 8rem 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.system-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 40%),
        linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.01) 50%, transparent 100%);
    pointer-events: none;
}

.system-overview .container {
    position: relative;
    z-index: 2;
}

.system-overview .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.system-overview .section-badge {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #000000;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.system-overview .section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.system-overview .section-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* System Stats Grid */
.system-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 6rem;
}

.system-stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.system-stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: rotateGlow 8s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.system-stat-card:hover::before {
    opacity: 1;
}

.system-stat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 30px 60px rgba(255, 255, 255, 0.1);
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.system-stat-card:hover .stat-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.stat-icon i {
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.4s ease;
}

.system-stat-card:hover .stat-icon i {
    transform: scale(1.2);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.stat-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

/* System Features Grid */
.system-features {
    margin-top: 6rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.05);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.feature-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.feature-list li::before {
    content: '✦';
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    width: 16px;
    text-align: center;
}

/* System CTA Section */
.system-cta {
    text-align: center;
    margin-top: 6rem;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.system-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.system-cta h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.system-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.system-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #ffffff;
    color: #000000;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
}

.system-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.system-cta-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.system-cta-btn:hover i {
    transform: translateX(5px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .unwind-hero {
        padding: 100px 0 50px;
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .hero-badge {
        padding: 0.6rem 2rem;
        font-size: 0.8rem;
        letter-spacing: 2px;
        margin-bottom: 2rem;
    }
    
    .page-title {
        margin-bottom: 3rem;
    }
    
    .title-main {
        font-size: clamp(3rem, 15vw, 6rem);
        letter-spacing: -4px;
        margin-bottom: 1.5rem;
    }
    
    .title-sub {
        font-size: clamp(1rem, 4vw, 1.4rem);
        letter-spacing: 2px;
        margin-bottom: 3rem;
    }
    
    .hero-quote-section {
        margin: 3rem 0 4rem;
        padding: 2.5rem 2rem;
        border-radius: 25px;
    }
    
    .hero-quote {
        font-size: clamp(1.4rem, 6vw, 2rem);
        margin-bottom: 2rem;
        line-height: 1.3;
    }
    
    .hero-intro p {
        font-size: clamp(1rem, 3.5vw, 1.2rem);
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .hero-intro p:first-child {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
        margin-bottom: 1.5rem;
    }
    
    .hero-cta {
        margin-top: 3rem;
    }
    
    .cta-btn {
        padding: 1.2rem 2.8rem;
        font-size: 1rem;
        letter-spacing: 1.5px;
        gap: 1rem;
        min-width: 240px;
        border-radius: 40px;
    }
    
    .cta-btn:hover {
        letter-spacing: 2px;
        transform: translateY(-5px) scale(1.02);
    }
    
    .cta-btn i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 1.5rem 0.8rem;
    }
    
    .hero-badge {
        padding: 0.5rem 1.5rem;
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }
    
    .title-main {
        font-size: clamp(2.5rem, 18vw, 4.5rem);
        letter-spacing: -3px;
    }
    
    .title-sub {
        font-size: clamp(0.9rem, 5vw, 1.2rem);
        letter-spacing: 1.5px;
    }
    
    .hero-quote-section {
        padding: 2rem 1.5rem;
        margin: 2rem 0 3rem;
    }
    
    .hero-quote {
        font-size: clamp(1.2rem, 7vw, 1.6rem);
        margin-bottom: 1.5rem;
    }
    
    .hero-intro p {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
        line-height: 1.5;
        margin-bottom: 1.2rem;
    }
    
    .cta-btn {
        padding: 1rem 2.2rem;
        font-size: 0.9rem;
        letter-spacing: 1px;
        gap: 0.8rem;
        min-width: 200px;
        border-radius: 35px;
    }
    
    .cta-btn:hover {
        letter-spacing: 1.5px;
        transform: translateY(-3px) scale(1.01);
    }
    
    .cta-btn i {
        font-size: 0.9rem;
    }
    
    /* ...existing code... */
}

@media (max-width: 375px) {
    .hero-cta {
        margin-top: 2rem;
    }
    
    .cta-btn {
        padding: 0.9rem 2rem;
        font-size: 0.85rem;
        letter-spacing: 0.8px;
        gap: 0.7rem;
        min-width: 180px;
        border-radius: 30px;
    }
    
    .cta-btn:hover {
        letter-spacing: 1.2px;
        transform: translateY(-2px);
    }
    
    .cta-btn i {
        font-size: 0.8rem;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 812px) and (orientation: landscape) {
    .hero-cta {
        margin-top: 2rem;
    }
    
    .cta-btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
        min-width: 160px;
        border-radius: 25px;
    }
}

/* Ultra Small Devices (Galaxy Fold, etc.) */
@media (max-width: 320px) {
    .cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
        letter-spacing: 0.5px;
        gap: 0.6rem;
        min-width: 160px;
        border-radius: 25px;
    }
    
    .cta-btn span {
        font-size: 0.8rem;
    }
    
    .cta-btn i {
        font-size: 0.75rem;
    }
}
