* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-red: #c41e3a;
    --darker-red: #8B0000;
    --dark-blue: #0066cc;
    --darker-blue: #00008B;
}

body {
    font-family: 'Orbitron', sans-serif;
    background-color: #000;
    color: #fff;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('https://i.imgur.com/QQLjIHV.gif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
}

/* Arka plan için overlay katmanı */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://i.imgur.com/QQLjIHV.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: -1;
    pointer-events: none;
}

/* İçerik için overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%);
    z-index: -1;
    pointer-events: none;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid var(--dark-red);
    box-shadow: 0 2px 10px rgba(196, 30, 58, 0.3);
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.logo .top-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 40px;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 10px var(--dark-red);
}

.logo .slogan {
    font-size: 0.9rem;
    color: #fff;
    opacity: 0.8;
    margin-top: -5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ff3366;
    text-shadow: 0 0 5px rgba(255, 51, 102, 0.5);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.social-links img {
    height: 24px;
}

.social-links .teamspeak {
    background: linear-gradient(45deg, var(--dark-blue), #0088ff);
}

.social-links .instagram {
    background: linear-gradient(45deg, var(--dark-red), #ff3366);
}

.social-links a:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 3rem;
    border-radius: 10px;
    border: 1px solid var(--dark-red);
    max-width: 1000px;
    width: 100%;
    box-shadow: 0 0 20px rgba(196, 30, 58, 0.2);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(196, 30, 58, 0.8);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Announcements */
.announcements {
    padding-top: 2rem;
    width: 100%;
}

.announcements h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(196, 30, 58, 0.5);
}

.announcements {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.announcement-regions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    width: 100%;
}

.announcement-region {
    flex: 1;
    max-width: 300px;
    margin-bottom: 1.5rem;
    position: relative;
    border-radius: 8px;
    transition: transform 0.3s ease;
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.announcement-region:hover {
    transform: translateY(-5px);
}

.announcement-region::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 8px;
    background: linear-gradient(
        45deg,
        transparent 5%,
        var(--dark-blue) 25%,
        var(--dark-red) 50%,
        var(--dark-blue) 75%,
        transparent 95%
    );
    mask: 
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    animation: borderAnimate 3s linear infinite;
}

@keyframes borderAnimate {
    0% {
        transform: rotate(0deg);
        filter: hue-rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
        filter: hue-rotate(360deg);
    }
}

.region-header {
    background: linear-gradient(90deg, var(--dark-blue), var(--dark-red));
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px 8px 0 0;
}

.region-header h3 {
    color: #fff;
    font-size: 1.2rem;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.region-header .date {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.region-content {
    padding: 1.5rem;
    height: 200px;
    overflow-y: auto;
    position: relative;
    z-index: 1;
}

.region-content::-webkit-scrollbar {
    width: 8px;
}

.region-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

.region-content::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--dark-blue), var(--dark-red));
    border-radius: 4px;
}

.region-content p {
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.server-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.ip-address {
    background-color: rgba(255, 87, 34, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #FF5722;
}

.ip-address h3 {
    color: #FF5722;
    margin-bottom: 0.5rem;
}

.ip-address p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.copy-ip {
    background-color: #FF5722;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.copy-ip:hover {
    background-color: #F4511E;
    transform: translateY(-2px);
}

.server-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat .label {
    color: #FF5722;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.stat .value {
    font-size: 1.2rem;
    color: white;
}

/* VIP Form Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    margin: 15% auto;
    padding: 20px;
    border: 2px solid #c41e3a;
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 20px rgba(196, 30, 58, 0.3);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #c41e3a;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #444;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: #c41e3a;
    outline: none;
    box-shadow: 0 0 5px rgba(196, 30, 58, 0.5);
}

.submit-button {
    background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    width: 100%;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: linear-gradient(135deg, #8b0000 0%, #c41e3a 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.3);
}

.alert {
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}

.alert.success {
    background: rgba(40, 167, 69, 0.2);
    border: 1px solid #28a745;
    color: #28a745;
}

/* VIP Package Styles */
.vip-packages {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.vip-package {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    padding: 20px;
    width: 300px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.vip-package:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.bronze {
    border: 2px solid #cd7f32;
}

.silver {
    border: 2px solid #c0c0c0;
}

.gold {
    border: 2px solid #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.platinum {
    border: 2px solid #e5e4e2;
    box-shadow: 0 0 15px rgba(229, 228, 226, 0.3);
}

.titanium {
    border: 2px solid #cc0000;
    box-shadow: 0 0 15px rgba(204, 0, 0, 0.3);
}

.package-header {
    text-align: center;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 10px;
}

.gold .package-header {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
}

.platinum .package-header {
    background: linear-gradient(135deg, rgba(229, 228, 226, 0.2), rgba(229, 228, 226, 0.1));
}

.titanium .package-header {
    background: linear-gradient(135deg, rgba(204, 0, 0, 0.2), rgba(204, 0, 0, 0.1));
}

.package-header h3 {
    font-size: 24px;
    margin: 0;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.price {
    font-size: 28px;
    color: #c41e3a;
    margin-top: 10px;
    font-weight: bold;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features li {
    padding: 12px 15px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gold .features li {
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.platinum .features li {
    text-shadow: 0 0 5px rgba(229, 228, 226, 0.3);
}

.titanium .features li {
    text-shadow: 0 0 5px rgba(204, 0, 0, 0.3);
}

.features li:last-child {
    border-bottom: none;
}

.buy-button {
    background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    width: 100%;
    transition: all 0.3s ease;
}

.buy-button:hover {
    background: linear-gradient(135deg, #8b0000 0%, #c41e3a 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.3);
}

.popular-tag {
    position: absolute;
    top: -12px;
    right: -12px;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    transform: rotate(5deg);
}

/* VIP paketlerine özel etiket renkleri */
.gold .popular-tag {
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #000;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.platinum .popular-tag {
    background: linear-gradient(135deg, #e5e4e2, #ffffff);
    color: #000;
    box-shadow: 0 0 10px rgba(229, 228, 226, 0.5);
}

.titanium .popular-tag {
    background: linear-gradient(135deg, #cc0000, #ff0000);
    color: #fff;
    box-shadow: 0 0 10px rgba(204, 0, 0, 0.5);
}

/* Neon yıldız efekti renkleri */
.gold .features li::before {
    text-shadow: 0 0 5px #ffd700;
}

.platinum .features li::before {
    text-shadow: 0 0 5px #e5e4e2;
}

.titanium .features li::before {
    text-shadow: 0 0 5px #cc0000;
}

/* Rules Page Styles */
.rules-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.rules-content {
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(196, 30, 58, 0.3);
    border: 1px solid var(--dark-red);
}

.rules-content h1 {
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(196, 30, 58, 0.8);
}

.rules-intro {
    text-align: center;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.rules-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.rule-category {
    background: rgba(0, 0, 0, 0.7);
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.rule-category:hover {
    transform: translateY(-5px);
}

/* Genel Kurallar - Altın rengi */
.rule-category:nth-child(1) {
    border: 2px solid #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.rule-category:nth-child(1) h2 {
    color: #ffd700;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.rule-category:nth-child(1):hover {
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Oyun Kuralları - Platin rengi */
.rule-category:nth-child(2) {
    border: 2px solid #e5e4e2;
    box-shadow: 0 0 15px rgba(229, 228, 226, 0.3);
}

.rule-category:nth-child(2) h2 {
    color: #e5e4e2;
    text-shadow: 0 0 5px rgba(229, 228, 226, 0.5);
}

.rule-category:nth-child(2):hover {
    box-shadow: 0 5px 15px rgba(229, 228, 226, 0.3);
}

/* Ceza Sistemi - Kırmızı rengi */
.rule-category:nth-child(3) {
    border: 2px solid #ff0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.rule-category:nth-child(3) h2 {
    color: #ff0000;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
}

.rule-category:nth-child(3):hover {
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.rule-category h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.rules-list {
    list-style: none;
    padding: 0;
}

.rules-list li {
    color: #fff;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.rules-list li:last-child {
    border-bottom: none;
}

/* Bullet points için özel renkler */
.rule-category:nth-child(1) .rules-list li::before {
    content: "•";
    color: #ffd700;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2rem;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.rule-category:nth-child(2) .rules-list li::before {
    content: "•";
    color: #e5e4e2;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2rem;
    text-shadow: 0 0 5px rgba(229, 228, 226, 0.5);
}

.rule-category:nth-child(3) .rules-list li::before {
    content: "•";
    color: #ff0000;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2rem;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
}

.rules-note {
    text-align: center;
    color: #fff;
    opacity: 0.7;
    font-style: italic;
    margin-top: 2rem;
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Loading Screen Styles */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.loading-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.loading-logo {
    width: 160px;
    height: 160px;
    animation: pulse 2s infinite;
}

.loading-spinner {
    position: absolute;
    width: 240px;
    height: 240px;
    border: 4px solid transparent;
    border-top: 4px solid var(--dark-red);
    border-right: 4px solid var(--dark-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.loading-message {
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 140px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    position: absolute;
    width: 100%;
    bottom: -180px;
}

/* Responsive Tasarım */
@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 0.5rem;
        gap: 0.5rem;
        width: 100%;
    }

    .logo {
        align-items: center;
        text-align: center;
        width: 100%;
        padding: 0.5rem;
    }

    .logo .top-section {
        justify-content: center;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
        padding: 0.5rem;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 0.8rem;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 5px;
    }

    .social-links {
        flex-direction: column;
        width: 100%;
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .social-links a {
        width: 100%;
        justify-content: center;
        margin: 0;
    }

    .announcement-regions {
        flex-direction: column;
        align-items: center;
        padding: 1rem;
        gap: 1rem;
        width: 100%;
    }

    .announcement-region {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .region-content {
        height: auto;
        max-height: 200px;
    }

    main {
        padding: 0.5rem;
    }

    /* VIP paketleri için mobil düzenleme */
    .vip-packages {
        flex-direction: column;
        padding: 0.5rem;
        gap: 1rem;
    }

    .vip-package {
        width: 100%;
        margin: 0;
    }

    /* Kurallar sayfası için mobil düzenleme */
    .rules-container {
        grid-template-columns: 1fr;
        padding: 0.5rem;
        gap: 1rem;
    }

    .rules-section {
        padding: 0.5rem;
    }

    .rules-content {
        padding: 1rem;
    }

    .rule-category {
        margin: 0;
        width: 100%;
    }

    /* Loading screen düzenlemesi */
    .loading-logo {
        width: 120px;
        height: 120px;
    }

    .loading-spinner {
        width: 180px;
        height: 180px;
    }

    .loading-message {
        margin-top: 100px;
        bottom: -140px;
    }
}

/* Daha küçük ekranlar için ek düzenlemeler */
@media screen and (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .navbar {
        padding: 0.3rem;
    }

    .logo img {
        height: 30px;
    }

    .logo span {
        font-size: 1.2rem;
    }

    .logo .slogan {
        font-size: 0.8rem;
    }

    .nav-links a {
        font-size: 0.9rem;
        padding: 0.6rem;
    }

    .social-links a {
        font-size: 0.8rem;
        padding: 0.6rem;
    }

    .region-header h3 {
        font-size: 1rem;
    }

    .region-content p {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }

    .rules-content h1 {
        font-size: 1.8rem;
    }

    .rule-category h2 {
        font-size: 1.2rem;
    }

    .rules-list li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }
}

/* Yatay scroll'u engellemek için */
html, body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

/* Tüm içerik için wrapper */
body > * {
    max-width: 100%;
    box-sizing: border-box;
}

/* Duyuru bölgesi için ek düzenleme */
.announcements {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Tüm bölümler için genel düzenleme */
section {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    padding: 0 1rem;
}

.price-box {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
}

.price {
    font-size: 32px;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.duration {
    font-size: 14px;
    opacity: 0.8;
}

/* VIP paketlerine özel fiyat renkleri */
.gold .price {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.platinum .price {
    color: #e5e4e2;
    text-shadow: 0 0 10px rgba(229, 228, 226, 0.5);
}

.titanium .price {
    color: #cc0000;
    text-shadow: 0 0 10px rgba(204, 0, 0, 0.5);
}

/* Sayfa koruma script'i */
</style>
<script>
    document.addEventListener('contextmenu', function(e) {
        e.preventDefault();
        return false;
    });

    document.onkeydown = function(e) {
        if(e.keyCode == 123) { // F12
            return false;
        }
        if(e.ctrlKey && e.shiftKey && e.keyCode == 'I'.charCodeAt(0)) { // Ctrl+Shift+I
            return false;
        }
        if(e.ctrlKey && e.shiftKey && e.keyCode == 'C'.charCodeAt(0)) { // Ctrl+Shift+C
            return false;
        }
        if(e.ctrlKey && e.shiftKey && e.keyCode == 'J'.charCodeAt(0)) { // Ctrl+Shift+J
            return false;
        }
        if(e.ctrlKey && e.keyCode == 'U'.charCodeAt(0)) { // Ctrl+U (View Source)
            return false;
        }
    };
</script> 