/* Disclaimer Page Styles */

.disclaimer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* Hero Section */
.disclaimer-hero {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
    margin-bottom: 60px;
    border-radius: 0 0 50px 50px;
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: 
        radial-gradient(circle at 20% 50%, white 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, white 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.icon-wrapper {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 50%;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

.icon-wrapper svg {
    display: block;
    color: #ffffff;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Area */
.disclaimer-content {
    padding: 0 20px 80px;
}

/* Disclaimer Cards */
.disclaimer-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.disclaimer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.disclaimer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

.disclaimer-card:hover::before {
    opacity: 1;
}

/* Intro Card */
.intro-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border: none;
}

.intro-card .card-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

/* Card Header */
.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-radius: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.card-icon svg {
    color: #667eea;
}

.disclaimer-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.disclaimer-card:hover .card-icon svg {
    color: #ffffff;
}

.card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
    line-height: 1.3;
}

/* Card Content */
.card-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
}

.card-content p {
    margin: 0;
}

/* Agreement Notice */
.agreement-notice {
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
    border-radius: 20px;
    padding: 35px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(253, 203, 110, 0.3);
    border: 2px solid #fdcb6e;
}

.notice-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    flex-shrink: 0;
}

.notice-icon svg {
    color: #d63031;
}

.agreement-notice p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2d3748;
    margin: 0;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .disclaimer-hero {
        padding: 60px 15px;
        border-radius: 0 0 30px 30px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .icon-wrapper {
        padding: 15px;
    }

    .icon-wrapper svg {
        width: 40px;
        height: 40px;
    }

    .disclaimer-card {
        padding: 25px;
        margin-bottom: 20px;
        border-radius: 15px;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
    }

    .card-icon svg {
        width: 24px;
        height: 24px;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .card-content {
        font-size: 1rem;
    }

    .agreement-notice {
        flex-direction: column;
        padding: 25px;
        gap: 15px;
    }

    .notice-icon {
        width: 40px;
        height: 40px;
    }

    .notice-icon svg {
        width: 20px;
        height: 20px;
    }

    .agreement-notice p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .disclaimer-card {
        padding: 20px;
    }

    .card-title {
        font-size: 1.25rem;
    }

    .card-content {
        font-size: 0.95rem;
    }
}

/* Print Styles */
@media print {
    .disclaimer-hero {
        background: #667eea;
        color: white;
        page-break-after: avoid;
    }

    .disclaimer-card {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #e2e8f0;
    }

    .disclaimer-card:hover {
        transform: none;
    }
}