/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 25%, #a8edea 50%, #fed6e3 75%, #d299c2 100%);
    background-size: 400% 400%;
    min-height: 100vh;
    animation: gradientShift 45s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
    100% { background-position: 0% 50%; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(25px) saturate(180%);
    background: rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
}

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

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.tagline {
    font-size: 0.875rem;
    color: rgba(45, 55, 72, 0.7);
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

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

.nav a {
    color: rgba(45, 55, 72, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

.nav a:hover {
    color: #2d3748;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    color: #2d3748;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.hero-text p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(45, 55, 72, 0.8);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.btn-primary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
    color: #2d3748;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.btn-primary:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.25));
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.25);
}

.btn-secondary {
    background: transparent;
    color: #2d3748;
    border: 1px solid rgba(45, 55, 72, 0.3);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
}

/* Extension Preview */
.extension-preview {
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 32px;
    padding: 3rem;
    text-align: center;
    box-shadow: 
        0 8px 32px rgba(31, 38, 135, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 16px 48px rgba(31, 38, 135, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.05);
}

.timer-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 
        0 12px 40px rgba(31, 38, 135, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.2),
        inset 0 -2px 0 rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.timer-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}

.timer-display {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

.session-label {
    font-size: 0.875rem;
    color: rgba(45, 55, 72, 0.7);
    margin-top: 0.5rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 2;
}

.play-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    color: #2d3748;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

.play-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Pomoto Authentic Showcase */
.pomoto-showcase {
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 25%, #a8edea 50%, #fed6e3 75%, #d299c2 100%);
    border-radius: 16px;
    position: relative;
    box-shadow: 
        0 20px 60px rgba(210, 153, 194, 0.3),
        0 8px 32px rgba(31, 38, 135, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
}

.pomoto-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    z-index: 0;
}

.pomoto-showcase:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(210, 153, 194, 0.35),
        0 16px 48px rgba(31, 38, 135, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.showcase-header {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

.showcase-icon-btn {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #2d3748;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(45, 55, 72, 0.2);
}

.showcase-icon-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 55, 72, 0.3);
}

.showcase-timer-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    height: 240px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.showcase-timer-circle:hover {
    transform: translate(-50%, -50%) scale(1.02);
    box-shadow: 0 24px 80px rgba(210, 153, 194, 0.3);
    background: rgba(255, 255, 255, 0.2);
}

.showcase-progress-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    z-index: 1;
}

.showcase-progress-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.15);
    stroke-width: 3;
}

.showcase-progress-fill {
    fill: none;
    stroke: #d299c2;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 282.74;
    stroke-dashoffset: 70; /* Show ~75% progress */
    filter: drop-shadow(0 0 16px rgba(210, 153, 194, 0.5));
}

.showcase-session-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60px);
    font-size: 12px;
    font-weight: 600;
    color: rgba(45, 55, 72, 0.8);
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.6);
    z-index: 10;
}

.showcase-time-display {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    font-weight: 600;
    color: #2d3748;
    text-align: center;
    letter-spacing: 3px;
    line-height: 1;
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.8);
    z-index: 10;
}

.showcase-play-icon {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d3748;
    opacity: 0.8;
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    z-index: 10;
}

.showcase-play-icon svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 20px rgba(255, 255, 255, 0.6));
}

.showcase-timer-circle:hover .showcase-play-icon {
    opacity: 1;
    transform: translateX(-50%) scale(1.1);
}

.showcase-footer {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
}

.showcase-help-text {
    font-size: 10px;
    font-weight: 600;
    color: rgba(45, 55, 72, 0.7);
    opacity: 0.8;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.showcase-help-icon {
    width: 20px;
    height: 20px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    color: rgba(45, 55, 72, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.showcase-help-icon:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Sections */
section {
    padding: 80px 0;
}

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

.section-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.section-header p {
    font-size: 1.25rem;
    color: rgba(45, 55, 72, 0.8);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 32px rgba(31, 38, 135, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 16px 48px rgba(31, 38, 135, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-icon {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #2d3748;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.feature-card p {
    color: rgba(45, 55, 72, 0.8);
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

/* Download Section */
.download {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(30px) saturate(200%);
    border-radius: 32px;
    margin: 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 16px 64px rgba(31, 38, 135, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.15);
}

.download-content {
    text-align: center;
    padding: 3rem;
}

.download-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.download-content p {
    font-size: 1.25rem;
    color: rgba(45, 55, 72, 0.8);
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

.download-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-item strong {
    color: #2d3748;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.info-item span {
    color: rgba(45, 55, 72, 0.7);
    font-size: 0.875rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #2d3748;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.step h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.step p {
    color: rgba(45, 55, 72, 0.8);
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 32px 32px 0 0;
    color: #2d3748;
    padding: 4rem 0 2rem;
    margin: 6rem 2rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 -8px 32px rgba(31, 38, 135, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.05);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4) 20%, 
        rgba(255, 255, 255, 0.6) 50%, 
        rgba(255, 255, 255, 0.4) 80%, 
        transparent
    );
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    position: relative;
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2d3748;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, rgba(45, 55, 72, 0.6), transparent);
    border-radius: 2px;
}

.footer-section p {
    color: rgba(45, 55, 72, 0.8);
    line-height: 1.7;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1rem;
}

.footer-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: rgba(45, 55, 72, 0.4);
    border-radius: 50%;
}

.footer-section ul li a {
    color: rgba(45, 55, 72, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.footer-section ul li a:hover {
    color: #2d3748;
    transform: translateX(4px);
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(45, 55, 72, 0.3), 
        transparent
    );
}

.footer-bottom p {
    color: rgba(45, 55, 72, 0.7);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .nav {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .download-info {
        grid-template-columns: 1fr;
    }
}

/* Page-specific styles for help, privacy, terms pages */
.page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 2rem 80px;
    color: #2d3748;
}

.page-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.page-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #2d3748;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.page-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: #2d3748;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.page-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: rgba(45, 55, 72, 0.9);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

.page-content ul, .page-content ol {
    margin: 1rem 0 1rem 2rem;
    color: rgba(45, 55, 72, 0.9);
}

.page-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

.page-content a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.page-content a:hover {
    text-decoration: underline;
    color: #2d3748;
}

.content-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    padding: 3rem;
    margin: 2rem 0;
    box-shadow: 
        0 8px 32px rgba(31, 38, 135, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(45, 55, 72, 0.8);
    text-decoration: none;
    margin-bottom: 2rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

.back-link:hover {
    color: #2d3748;
} 