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

:root {
    --primary-gold: #FFD700;
    --primary-red: #E74C3C;
    --success-green: #2ECC71;
    --deep-blue: #1A237E;
    --royal-purple: #6A1B9A;
    --gradient-start: #FF6B6B;
    --gradient-mid: #FFD93D;
    --gradient-end: #6BCB77;
    --text-dark: #2C3E50;
    --text-light: #ECF0F1;
    --shadow-color: rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #2d1b4e 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-x: hidden;
    position: relative;
}

/* Tech Grid Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
    z-index: 0;
}

@keyframes grid-move {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

/* Animated Tech Particles */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
    animation: particle-float 15s ease-in-out infinite;
    z-index: 0;
}

@keyframes particle-float {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* Confetti Animation */
.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary-gold);
    animation: confetti-fall linear infinite;
}

@keyframes confetti-fall {
    to {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Fireworks */
.fireworks-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.firework {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    animation: firework-burst 1s ease-out forwards;
}

@keyframes firework-burst {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }

    100% {
        transform: translate(var(--x), var(--y));
        opacity: 0;
    }
}

/* Main Container */
.container {
    max-width: 900px;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 60px 40px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Success Badge */
.success-badge {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    animation: scaleIn 0.6s ease-out 0.3s backwards;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.checkmark {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 5px 15px rgba(46, 204, 113, 0.4));
}

.checkmark-circle {
    stroke: var(--success-green);
    stroke-width: 3;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) 0.3s forwards;
}

.checkmark-check {
    stroke: var(--success-green);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.9s forwards;
}

@keyframes stroke {
    to {
        stroke-dashoffset: 0;
    }
}

/* Main Title */
.main-title {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInDown 0.8s ease-out 0.4s backwards;
}

.title-line {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--deep-blue), var(--royal-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line.highlight {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Story Banner */
.story-banner {
    text-align: center;
    margin-bottom: 40px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    border-radius: 15px;
    border-left: 5px solid var(--primary-gold);
    animation: fadeInUp 0.8s ease-out 0.7s backwards;
}

.story-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.story-subtext {
    font-size: 1rem;
    color: #7F8C8D;
    font-weight: 400;
    line-height: 1.6;
}

/* Domain Card */
.domain-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-bottom: 50px;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
    position: relative;
    overflow: hidden;
}

.domain-card::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: shine 3s infinite;
}

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

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.domain-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.domain-name {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
}

.domain-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    color: white;
    font-weight: 500;
    font-size: 1rem;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: var(--success-green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 15px var(--success-green);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Company Section */
.company-section {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.company-badge {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-gold), #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.company-badge svg {
    width: 35px;
    height: 35px;
    color: white;
    animation: rotate 3s linear infinite reverse;
}

.company-name {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.company-subtitle {
    font-size: 1.1rem;
    color: #7F8C8D;
    font-weight: 400;
}

/* Rights Section */
.rights-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out 1s backwards;
}

.rights-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.rights-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.rights-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.rights-card:hover::before {
    opacity: 1;
}

.rights-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--deep-blue), var(--royal-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.rights-card:hover .rights-icon {
    transform: scale(1.1) rotate(5deg);
}

.rights-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.rights-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.rights-card p {
    color: #7F8C8D;
    font-size: 0.95rem;
}

/* Certificate Section */
.certificate-section {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 1.2s backwards;
}

.certificate-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.certificate-header svg {
    width: 35px;
    height: 35px;
    color: var(--deep-blue);
}

.certificate-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.certificate-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    transition: transform 0.2s ease;
}

.detail-row:hover {
    transform: translateX(5px);
}

.detail-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.detail-value {
    font-weight: 500;
    color: var(--royal-purple);
    font-size: 1rem;
}

/* Acknowledgments Section */
.acknowledgments-section {
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 1.3s backwards;
    box-shadow: 0 15px 40px rgba(253, 203, 110, 0.3);
}

.acknowledgments-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.acknowledgments-header svg {
    width: 35px;
    height: 35px;
    color: var(--primary-red);
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.1);
    }

    50% {
        transform: scale(1);
    }
}

.acknowledgments-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

.acknowledgments-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 500;
}

.supporters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    max-width: 600px;
    margin: 0 auto;
}

.supporter-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.supporter-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.supporter-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--deep-blue), var(--royal-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 10px 25px rgba(106, 27, 154, 0.4);
    transition: transform 0.3s ease;
}

.supporter-card:hover .supporter-avatar {
    transform: rotate(360deg);
}

.supporter-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.supporter-role {
    font-size: 0.95rem;
    color: #7F8C8D;
    font-weight: 500;
}

/* Celebration Message */
.celebration-message {
    text-align: center;
    animation: fadeInUp 0.8s ease-out 1.4s backwards;
}

.celebration-message p {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    animation: gradient-shift 3s ease infinite;
    background-size: 200% 200%;
}

.sub-message {
    font-size: 1.2rem !important;
    color: var(--text-dark) !important;
    font-weight: 500 !important;
    background: none !important;
    -webkit-text-fill-color: var(--text-dark) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 40px 25px;
    }

    .title-line {
        font-size: 2rem;
    }

    .title-line.highlight {
        font-size: 2.5rem;
    }

    .domain-name {
        font-size: 2rem;
    }

    .company-name {
        font-size: 1.5rem;
    }

    .rights-section {
        grid-template-columns: 1fr;
    }

    .celebration-message p {
        font-size: 1.4rem;
    }

    .sub-message {
        font-size: 1rem !important;
    }
}