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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

header {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    text-align: center;
    padding: 30px 20px;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

main {
    padding: 40px;
}

.text-container {
    position: relative;
}

.text-content {
    position: relative;
}

.visible-text {
    padding-bottom: 20px;
}

.visible-text h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.visible-text p {
    color: #34495e;
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: justify;
}

.blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 60%,
        rgba(255, 255, 255, 0.8) 80%,
        rgba(255, 255, 255, 0.95) 100%
    );
    pointer-events: none;
    z-index: 2;
}

.action-button-container {
    position: relative;
    z-index: 3;
    text-align: center;
    margin: 30px 0;
    padding: 20px 0;
}

.action-button {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.action-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(39, 174, 96, 0.4);
    background: linear-gradient(135deg, #229954 0%, #27ae60 100%);
}

.action-button:active {
    transform: translateY(-1px);
}

.blurred-text {
    filter: blur(8px);
    opacity: 0.6;
    transition: all 0.5s ease;
    pointer-events: none;
}

.blurred-text.revealed {
    filter: blur(0);
    opacity: 1;
    pointer-events: auto;
}

.blurred-text p {
    color: #34495e;
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: justify;
}

.blurred-text h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin: 30px 0 20px 0;
    font-weight: 600;
}

.blurred-text ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.blurred-text li {
    color: #34495e;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

footer {
    text-align: center;
    padding: 20px;
    color: #7f8c8d;
    font-size: 0.9rem;
    background: #f8f9fa;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        margin: 10px;
        border-radius: 15px;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    main {
        padding: 20px;
    }
    
    .visible-text h2 {
        font-size: 1.6rem;
    }
    
    .visible-text p,
    .blurred-text p,
    .blurred-text li {
        font-size: 1rem;
    }
    
    .action-button {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

/* Animation for reveal effect */
@keyframes revealContent {
    from {
        filter: blur(8px);
        opacity: 0.6;
    }
    to {
        filter: blur(0);
        opacity: 1;
    }
}

.reveal-animation {
    animation: revealContent 0.8s ease-out forwards;
}

/* Success message styling */
.success-message {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    margin: 20px 0;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
    display: none;
}

.success-message.show {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}