.card{
    background:rgba(255,255,255,0.05);
    padding:30px;
    border-radius:20px;
    transition:0.4s;
    text-decoration:none;
    color:white;
    display:block;
}

.card:hover{
    transform:translateY(-10px);
    background:rgba(255,215,0,0.15);
}
/* IMPORT FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:linear-gradient(135deg,#0f0f0f,#1c1c1c);
    color:white;
    min-height:100vh;
}

/* MAIN SECTION */
.section{
    max-width:900px;
    margin:auto;
    padding:120px 30px;
}

/* EVENT TITLE */
.section h2{
    font-size:48px;
    margin-bottom:20px;
    background:linear-gradient(to right,#ffd700,#ffffff);
    -webkit-background-clip:text;
    color:transparent;
}

/* SUB HEADINGS */
.section h3{
    margin-top:40px;
    margin-bottom:15px;
    font-size:26px;
    color:#ffd700;
}

/* PARAGRAPH */
.section p{
    color:#cccccc;
    line-height:1.7;
    font-size:17px;
}

/* RULES LIST */
.section ul{
    margin-top:10px;
    padding-left:20px;
}

.section li{
    margin-bottom:10px;
    color:#dddddd;
}

/* REGISTER BUTTON */
.btn{
    margin-top:30px;
    padding:15px 40px;
    background:linear-gradient(45deg,#ffd700,#ffcc00);
    color:black;
    border:none;
    border-radius:50px;
    font-weight:600;
    font-size:16px;
    cursor:pointer;
    transition:0.3s;
}

.btn:hover{
    transform:scale(1.05);
    box-shadow:0 0 20px rgba(255,215,0,0.5);
}

/* BACK LINK */
a{
    color:#ffd700;
    text-decoration:none;
    font-weight:500;
}

a:hover{
    text-decoration:underline;
}

/* GLASS CARD EFFECT */
.section{
    background:rgba(255,255,255,0.03);
    border-radius:20px;
    backdrop-filter:blur(10px);
    box-shadow:0 0 30px rgba(255,215,0,0.08);
}

/* RESPONSIVE */
@media(max-width:768px){

.section h2{
    font-size:32px;
}

.section{
    padding:100px 20px;
}

}
/* IMPORT FONT - Added Playfair Display for a classic, high-end feel */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    /* Rich Obsidian to Charcoal gradient */
    background: radial-gradient(circle at top, #2c2c2c, #0a0a0a);
    color: #e0e0e0;
    min-height: 100vh;
}

/* MAIN SECTION - Enhanced Glassmorphism */
.section {
    max-width: 900px;
    margin: 60px auto; /* Adjusted for better spacing */
    padding: 80px 50px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 30px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

/* THE SILVER SHIMMER EFFECT */
.section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.03), transparent);
    transform: rotate(45deg);
    animation: shimmer 6s infinite linear;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

/* EVENT TITLE - Silver/Platinum Gradient */
.section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ffffff 20%, #a6a6a6 50%, #ffffff 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    color: transparent;
    animation: shineText 4s linear infinite;
}

@keyframes shineText {
    to { background-position: 200% center; }
}

/* SUB HEADINGS */
.section h3 {
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c0c0c0; /* Classic Silver */
    border-left: 4px solid #ffffff;
    padding-left: 15px;
}

/* CARD ENHANCEMENTS */
.card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(192, 192, 192, 0.1);
    text-decoration: none;
    color: white;
    display: block;
}

.card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
}

/* REGISTER BUTTON - Liquid Silver Style */
.btn {
    margin-top: 30px;
    padding: 18px 50px;
    background: linear-gradient(45deg, #e0e0e0, #ffffff, #bebebe);
    background-size: 200% 200%;
    color: #1a1a1a;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.4s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    transform: scale(1.05);
    background-position: right center;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

/* RESPONSIVE */
@media(max-width:768px){
    .section h2 { font-size: 36px; }
    .section { padding: 60px 25px; margin: 20px; }
}
/* IMPORT LUXURY FONTS */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Poppins:wght@300;400;600&display=swap');

:root {
    --gold: #ffd700;
    --silver: #e5e4e2;
    --platinum: linear-gradient(135deg, #ffffff 0%, #a6a6a6 50%, #ffffff 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
    color: white;
    overflow-x: hidden;
    position: relative;
}

/* BACKGROUND DUST EFFECT */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.07) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: dustMove 20s linear infinite;
    z-index: -1;
}

@keyframes dustMove {
    from { transform: translateY(0); }
    to { transform: translateY(-1000px); }
}

/* NAVBAR */
nav {
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

nav h1 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    background: var(--platinum);
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: 1px;
}

nav a {
    color: #ddd;
    text-decoration: none;
    margin-left: 30px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
}

nav a:hover {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* HERO SECTION */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: url('https://www.transparenttextures.com/patterns/stardust.png');
}

.hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 10vw, 90px);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(to right, #fff 20%, #ffd700 40%, #ffd700 60%, #fff 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    color: transparent;
    animation: shine 4s linear infinite;
    text-transform: uppercase;
}

@keyframes shine {
    to { background-position: 200% center; }
}

.hero p {
    margin-top: 15px;
    font-size: 22px;
    letter-spacing: 8px;
    color: #c0c0c0;
    text-transform: uppercase;
    font-weight: 300;
}

.btn {
    margin-top: 40px;
    padding: 18px 45px;
    background: linear-gradient(45deg, #ffd700, #fff, #ffd700);
    background-size: 200% auto;
    color: black;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.5s;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn:hover {
    transform: scale(1.05) translateY(-3px);
    background-position: right center;
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

/* SECTION STYLING */
.section {
    padding: 120px 10%;
    text-align: center;
}

.section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 45px;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.section h3::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 2px;
    background: var(--gold);
    bottom: -10px;
    left: 25%;
}

/* CARDS GRID */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    color: white;
    backdrop-filter: blur(10px);
}

.card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.card p {
    font-size: 15px;
    color: #bbb;
    line-height: 1.6;
}

.card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* FOOTER */
footer {
    padding: 60px;
    text-align: center;
    background: #000;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    color: #777;
    font-size: 14px;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    nav { padding: 20px 5%; }
    nav div { display: none; } /* Hide links for simple mobile look */
    .hero h2 { font-size: 45px; }
    .section { padding: 80px 5%; }
}