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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: radial-gradient(circle at center, #0a0a0a 0%, #000 100%);
    position: relative;
    overflow-x: hidden;
}

.diamonds-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.diamond-bg {
    position: absolute;
    width: 150px;
    height: 150px;
    transform: rotate(45deg);
    background: linear-gradient(135deg, 
        transparent 0%, 
        rgba(147,197,253,0.05) 25%,
        rgba(147,197,253,0.15) 50%,
        rgba(147,197,253,0.05) 75%,
        transparent 100%);
    animation: diamondFloat 15s ease-in-out infinite;
}

.diamond-bg1 { 
    top: 10%; 
    left: 10%; 
    animation-delay: 0s;
    width: 200px;
    height: 200px;
}

.diamond-bg2 { 
    top: 60%; 
    right: 15%; 
    animation-delay: 3s;
    width: 120px;
    height: 120px;
}

.diamond-bg3 { 
    bottom: 20%; 
    left: 50%; 
    animation-delay: 6s;
    width: 180px;
    height: 180px;
}

.diamond-bg4 { 
    top: 30%; 
    right: 40%; 
    animation-delay: 9s;
    width: 100px;
    height: 100px;
}

.diamond-bg5 { 
    bottom: 40%; 
    left: 20%; 
    animation-delay: 12s;
    width: 140px;
    height: 140px;
}

@keyframes diamondFloat {
    0%, 100% { 
        transform: rotate(45deg) translateY(0) scale(1); 
        opacity: 0.3;
    }
    25% { 
        transform: rotate(135deg) translateY(-30px) scale(1.1); 
        opacity: 0.5;
    }
    50% { 
        transform: rotate(225deg) translateY(0) scale(1.2); 
        opacity: 0.4;
    }
    75% { 
        transform: rotate(315deg) translateY(-20px) scale(1); 
        opacity: 0.6;
    }
}

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

header {
    background: #0a0a0a;
    color: white;
    padding: 20px 0;
    border-bottom: 2px solid #93c5fd;
    box-shadow: 0 5px 30px rgba(147,197,253,0.3);
    position: relative;
    z-index: 10;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #93c5fd;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vip-badge {
    background: linear-gradient(135deg, #93c5fd, #dbeafe);
    color: #000;
    padding: 3px 12px;
    font-size: 14px;
    border-radius: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(147,197,253,0.5);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

nav a {
    color: #dbeafe;
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    transition: all 0.3s;
    padding: 5px 10px;
}

nav a:hover {
    color: #93c5fd;
    text-shadow: 0 0 10px rgba(147,197,253,0.8);
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 20px;
    }
    nav ul {
        justify-content: center;
    }
}

main {
    padding: 40px 0;
    position: relative;
    z-index: 5;
}

.breadcrumbs {
    margin-bottom: 20px;
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(147,197,253,0.1);
    border-radius: 0;
    font-size: 14px;
    border-left: 3px solid #93c5fd;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    color: #e0e0e0;
}

.breadcrumbs li:not(:last-child)::after {
    content: "›";
    margin-left: 10px;
    color: #93c5fd;
}

.breadcrumbs a {
    color: #93c5fd;
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: #dbeafe;
}

.last-updated {
    font-size: 14px;
    color: #93c5fd;
    font-style: italic;
    margin: 10px 0 !important;
}

.hero {
    background: rgba(147,197,253,0.05);
    padding: 60px 40px;
    border-radius: 0;
    margin-bottom: 40px;
    text-align: center;
    border: 2px solid #93c5fd;
    box-shadow: 0 0 40px rgba(147,197,253,0.3);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #93c5fd;
}

.hero h1 {
    font-size: 48px;
    background: linear-gradient(135deg, #93c5fd, #dbeafe, #93c5fd);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: diamondShine 2s ease infinite;
    margin-bottom: 20px;
    font-weight: bold;
}

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

.hero p {
    font-size: 18px;
    color: #b0b0b0;
    max-width: 800px;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin-bottom: 30px;
    border: 2px solid #93c5fd;
    box-shadow: 0 0 30px rgba(147,197,253,0.4);
}

section {
    background: rgba(147,197,253,0.03);
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid rgba(147,197,253,0.2);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

h2 {
    color: #93c5fd;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 0 0 15px rgba(147,197,253,0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
}

h3 {
    color: #dbeafe;
    font-size: 24px;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: bold;
}

h4 {
    color: #93c5fd;
    font-size: 18px;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #b0b0b0;
}

/* Diamond Layout */
.diamond-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 30px 0;
}

.diamond-content {
    padding: 20px;
}

.diamond-image {
    width: 100%;
    height: auto;
    border: 2px solid #93c5fd;
    box-shadow: 0 0 30px rgba(147,197,253,0.4);
    transform: rotate(45deg);
    animation: diamondRotate 10s linear infinite;
}

@keyframes diamondRotate {
    0% { transform: rotate(45deg); }
    100% { transform: rotate(405deg); }
}

/* Crystal Grid */
.crystal-grid {
    margin: 30px 0;
}

.crystal-main {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto 30px;
    border: 2px solid #93c5fd;
    box-shadow: 0 0 40px rgba(147,197,253,0.5);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.crystal-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.crystal-item {
    background: rgba(147,197,253,0.1);
    padding: 20px;
    border: 1px solid #93c5fd;
    transition: all 0.3s;
    text-align: center;
}

.crystal-item:hover {
    background: rgba(147,197,253,0.2);
    box-shadow: 0 0 20px rgba(147,197,253,0.4);
    transform: translateY(-5px);
}

/* Prism Layout */
.prism-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
    margin: 30px 0;
}

.prism-image {
    width: 100%;
    height: auto;
    border: 2px solid #93c5fd;
    box-shadow: -15px 15px 0 rgba(147,197,253,0.2), 0 0 30px rgba(147,197,253,0.4);
}

.prism-content {
    padding: 20px;
}

@media (max-width: 768px) {
    .diamond-layout,
    .prism-layout {
        grid-template-columns: 1fr;
    }
    
    .diamond-image {
        animation: none;
        transform: rotate(0deg);
    }
}

.resource-box {
    background: rgba(147,197,253,0.05);
    border-left: 4px solid #93c5fd;
    padding: 25px;
    margin-bottom: 25px;
    transition: all 0.3s;
}

.resource-box:hover {
    background: rgba(147,197,253,0.1);
    box-shadow: 0 0 25px rgba(147,197,253,0.3);
}

.resource-box h3 {
    color: #93c5fd;
    margin-top: 0;
}

.share-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.share-btn {
    padding: 12px 30px;
    border-radius: 0;
    text-decoration: none;
    color: #93c5fd;
    font-weight: bold;
    transition: all 0.3s;
    border: 2px solid #93c5fd;
    background: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.share-btn:hover {
    background: #93c5fd;
    color: #000;
    box-shadow: 0 0 25px rgba(147,197,253,0.5);
}

.faq-item {
    background: rgba(147,197,253,0.05);
    border: 2px solid #93c5fd;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 0 25px rgba(147,197,253,0.4);
    background: rgba(147,197,253,0.1);
}

.faq-item h3 {
    color: #93c5fd;
    margin-top: 0;
    font-size: 20px;
}

footer {
    background: #0a0a0a;
    color: white;
    padding: 50px 20px 20px;
    margin-top: 50px;
    border-top: 2px solid #93c5fd;
    box-shadow: 0 -5px 30px rgba(147,197,253,0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #93c5fd;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #888;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #93c5fd;
}

.footer-bottom {
    border-top: 2px solid #93c5fd;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 8px 0;
    line-height: 1.6;
    color: #888;
}

.footer-bottom p:first-child {
    font-weight: bold;
    font-size: 16px;
    color: #93c5fd;
}
